/* =========================================================
   PRISM — MEDIA & NEWSROOMS
   ========================================================= */

   





:root {
    --media-bg: #F4F7FB;
    --media-bg-mid: #E4ECF5;
    --media-card: #FFFFFF;

    --media-accent: #1C5FA3;
    --media-accent-dark: #144A80;
    --media-accent-bright: #2C7AC8;

    --media-signal: #8A5008;

    --media-text: #0B1929;
    --media-text-secondary: #2c3e50;
    --media-muted: #8496A8;

    --media-border: rgba(28, 95, 163, 0.11);
    --media-border-subtle: rgba(0, 0, 0, 0.08);

    --media-radius: 12px;

    --font-brand: "nasalization", sans-serif;
    --fd: "Syne", sans-serif;
    --fb: "IBM Plex Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--fb);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.media-hero,
.media-challenge,
.media-intelligence,
.media-workflow,
.media-language,
.media-questions,
.media-final-cta {
    position: relative;
}

.section-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--media-accent);
    margin-bottom: 18px;
}

.section-heading {
    max-width: 820px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--media-text);
    font-family: "Syne", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.section-heading h2 span {
    display: block;
    color: var(--media-accent);
}

.section-heading > p {
    margin: 28px 0 0;
    max-width: 720px;
    color: var(--media-text-secondary);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 48px;
    padding: 0 20px;

    border-radius: 8px;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.26s ease,
        background 0.26s ease,
        border-color 0.26s ease;
}

.primary-button {
    color: #fff;
    background: var(--media-accent);
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--media-accent-dark);
}

.primary-button span,
.secondary-button span {
    font-size: 18px;
    line-height: 1;
}

.secondary-button {
    color: var(--media-text-secondary);
    border: 1px solid var(--media-border);
    background: rgba(255,255,255,0.72);
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: rgba(28,95,163,0.3);
}


/* =========================================================
   HERO
========================================================= */

.media-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 130px 0 110px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 45%,rgba(44,122,200,0.08),transparent 38%), var(--media-bg);
}

.media-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(28,95,163,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(28,95,163,0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 85%
    );
}

.media-hero-grid {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 70px;
    align-items: center;
}

.media-hero-copy {
    max-width: 640px;
}

.media-hero h1 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;

    color: var(--media-text);
}

.media-hero h1 span {
    display: block;
    color: var(--media-accent);
}

.hero-description {
    max-width: 590px;

    margin: 30px 0 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 1.65;

    color: var(--media-text-secondary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 36px;
}


/* =========================================================
   HERO STORY FIELD
========================================================= */

.media-hero-visual {
    position: relative;
}

.story-field {
    position: relative;

    height: 500px;

    overflow: hidden;

    border: 1px solid rgba(28,95,163,0.18);
    border-radius: 14px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(44,122,200,0.12),
            transparent 36%
        ),
        #091827;

    box-shadow:
        0 30px 80px rgba(11,25,41,0.16);
}

.story-field::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 38px 38px;
}

.story-label {
    position: absolute;
    top: 22px;
    left: 24px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.14em;

    color: rgba(255,255,255,0.46);
}

.story-node {
    position: absolute;

    width: 145px;

    padding: 12px 13px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;

    background: rgba(255,255,255,0.045);

    backdrop-filter: blur(8px);

    color: #fff;

    z-index: 3;
}

.story-node .node-time {
    display: block;

    margin-bottom: 7px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;

    color: #72aee1;
}

.story-node strong {
    display: block;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.story-node small {
    display: block;

    margin-top: 4px;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 10px;

    color: rgba(255,255,255,0.48);
}

.story-node-1 {
    left: 7%;
    top: 23%;
}

.story-node-2 {
    right: 8%;
    top: 19%;
}

.story-node-3 {
    left: 8%;
    bottom: 19%;
}

.story-node-4 {
    right: 8%;
    bottom: 20%;
}

.story-core {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 160px;
    height: 160px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(72,145,207,0.45);

    background:
        radial-gradient(
            circle,
            rgba(44,122,200,0.22),
            rgba(7,22,36,0.92) 68%
        );

    box-shadow:
        0 0 70px rgba(44,122,200,0.16);

    z-index: 5;
}

.story-core span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.18em;

    color: #72aee1;
}

.story-core strong {
    margin-top: 5px;

    font-family: "Syne", sans-serif;
    font-size: 17px;
    line-height: 1.05;

    color: #fff;
}

.story-core small {
    margin-top: 8px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 8px;

    color: rgba(255,255,255,0.44);
}

.core-pulse {
    position: absolute;
    inset: -16px;

    border: 1px solid rgba(44,122,200,0.18);
    border-radius: 50%;

    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.story-line {
    position: absolute;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(72,145,207,0.05),
            rgba(72,145,207,0.45),
            rgba(72,145,207,0.05)
        );

    z-index: 2;
}

.line-1 {
    width: 220px;
    left: 29%;
    top: 40%;
    transform: rotate(20deg);
}

.line-2 {
    width: 220px;
    left: 54%;
    top: 40%;
    transform: rotate(-20deg);
}

.line-3 {
    width: 210px;
    left: 29%;
    top: 61%;
    transform: rotate(-20deg);
}

.line-4 {
    width: 210px;
    left: 54%;
    top: 61%;
    transform: rotate(20deg);
}


/* =========================================================
   CHALLENGE
========================================================= */

.media-challenge {
    padding: 120px 0;

    background: #fff;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 72px;

    border-top: 1px solid var(--media-border-subtle);
    border-bottom: 1px solid var(--media-border-subtle);
}

.challenge-item {
    min-height: 300px;

    padding: 34px 28px;

    border-right: 1px solid var(--media-border-subtle);
}

.challenge-item:last-child {
    border-right: 0;
}

.challenge-number {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    color: var(--media-accent);

    margin-bottom: 55px;
}

.challenge-item h3 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: 21px;
    letter-spacing: -0.025em;

    color: var(--media-text);
}

.challenge-item p {
    margin: 15px 0 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1.65;

    color: var(--media-text-secondary);
}

.challenge-callout {
    display: flex;
    align-items: center;
    gap: 18px;

    max-width: 850px;

    margin: 65px auto 0;

    padding: 24px 28px;

    border: 1px solid rgba(138,80,8,0.18);
    border-radius: 10px;

    background: rgba(138,80,8,0.045);
}

.callout-marker {
    flex: 0 0 auto;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--media-signal);

    box-shadow:
        0 0 0 6px rgba(138,80,8,0.08);
}

.challenge-callout p {
    margin: 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1.55;

    color: var(--media-text-secondary);
}

.challenge-callout strong {
    color: var(--media-text);
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.media-intelligence {
    padding: 125px 0;

    background: var(--media-bg);
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 70px;
}

.intelligence-card {
    position: relative;

    min-height: 480px;

    padding: 28px;

    border: 1px solid var(--media-border);
    border-radius: var(--media-radius);

    background: #fff;

    overflow: hidden;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.intelligence-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(11,25,41,0.08);
}

.card-number {
    position: relative;
    z-index: 2;

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;

    color: var(--media-muted);
}

.card-visual {
    position: relative;

    height: 190px;

    margin-top: 20px;
    margin-bottom: 30px;

    overflow: hidden;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #091827,
            #112c43
        );
}

.visual-tag {
    position: absolute;

    right: 14px;
    bottom: 12px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.14em;

    color: rgba(255,255,255,0.42);
}


/* Signal */

.signal-bars {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    height: 100px;

    display: flex;
    align-items: end;
    gap: 9px;
}

.signal-bars span {
    flex: 1;

    min-height: 15px;

    border-radius: 3px 3px 0 0;

    background: rgba(74,151,214,0.68);
}

.signal-bars span:nth-child(1) {
    height: 28%;
}

.signal-bars span:nth-child(2) {
    height: 39%;
}

.signal-bars span:nth-child(3) {
    height: 34%;
}

.signal-bars span:nth-child(4) {
    height: 53%;
}

.signal-bars span:nth-child(5) {
    height: 73%;
}

.signal-bars span:nth-child(6) {
    height: 92%;
}


/* Narrative */

.narrative-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(44,122,200,0.18),
            transparent 42%
        ),
        #091827;
}

.mini-node {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #65a8da;

    box-shadow:
        0 0 18px rgba(101,168,218,0.45);
}

.n1 {
    left: 27%;
    top: 28%;
}

.n2 {
    left: 52%;
    top: 20%;
}

.n3 {
    left: 71%;
    top: 43%;
}

.n4 {
    left: 47%;
    top: 68%;
}

.n5 {
    left: 25%;
    top: 57%;
}

.mini-link {
    position: absolute;

    height: 1px;

    background: rgba(101,168,218,0.42);

    transform-origin: left center;
}

.l1 {
    width: 115px;
    left: 29%;
    top: 30%;
    transform: rotate(-12deg);
}

.l2 {
    width: 100px;
    left: 53%;
    top: 24%;
    transform: rotate(35deg);
}

.l3 {
    width: 110px;
    left: 49%;
    top: 69%;
    transform: rotate(-28deg);
}

.l4 {
    width: 105px;
    left: 27%;
    top: 58%;
    transform: rotate(18deg);
}


/* Momentum */

.momentum-visual svg {
    position: absolute;

    inset: 35px;

    width: calc(100% - 70px);
    height: 120px;
}

.momentum-visual polyline {
    fill: none;

    stroke: #63a5d8;
    stroke-width: 2;

    vector-effect: non-scaling-stroke;
}

.momentum-point {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #63a5d8;

    box-shadow:
        0 0 0 5px rgba(99,165,216,0.08);
}

.p1 {
    left: 47%;
    top: 77px;
}

.p2 {
    left: 70%;
    top: 57px;
}

.p3 {
    right: 11%;
    top: 48px;
}


/* Actors */

.actor-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    border: 1px solid rgba(99,165,216,0.42);
    border-radius: 50%;

    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;

    color: #fff;
}

.actor-node {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;

    color: rgba(255,255,255,0.72);
}

.a1 {
    left: 25%;
    top: 28%;
}

.a2 {
    right: 22%;
    top: 25%;
}

.a3 {
    left: 23%;
    bottom: 23%;
}

.a4 {
    right: 24%;
    bottom: 25%;
}

.actor-line {
    position: absolute;

    height: 1px;

    background: rgba(99,165,216,0.35);

    transform-origin: left center;
}

.al1 {
    width: 100px;
    left: 31%;
    top: 40%;
    transform: rotate(17deg);
}

.al2 {
    width: 100px;
    left: 54%;
    top: 41%;
    transform: rotate(-20deg);
}

.al3 {
    width: 100px;
    left: 31%;
    top: 59%;
    transform: rotate(-20deg);
}

.al4 {
    width: 100px;
    left: 54%;
    top: 59%;
    transform: rotate(20deg);
}

.intelligence-card h3 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: 25px;
    letter-spacing: -0.03em;

    color: var(--media-text);
}

.intelligence-card > p {
    max-width: 500px;

    margin: 13px 0 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1.7;

    color: var(--media-text-secondary);
}


/* =========================================================
   WORKFLOW
========================================================= */

.media-workflow {
    padding: 120px 0;

    background: #fff;
}

.workflow-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;

    align-items: start;
}

.workflow-copy h2 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.045em;

    color: var(--media-text);
}

.workflow-copy h2 span {
    display: block;

    color: var(--media-accent);
}

.workflow-copy > p {
    max-width: 500px;

    margin-top: 26px;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: var(--media-text-secondary);
}

.workflow {
    position: relative;
}

.workflow-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;

    padding: 22px 0;
}

.workflow-index {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(28,95,163,0.2);
    border-radius: 50%;

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;

    color: var(--media-accent);

    background: rgba(28,95,163,0.035);
}

.workflow-label {
    display: block;

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.13em;

    color: var(--media-accent);
}

.workflow-step p {
    margin: 7px 0 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;

    color: var(--media-text-secondary);
}

.workflow-connector {
    width: 1px;
    height: 25px;

    margin-left: 20px;

    background: rgba(28,95,163,0.15);
}


/* =========================================================
   MULTILINGUAL
========================================================= */

.media-language {
    padding: 120px 0;

    background: var(--media-bg);
}

.language-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;

    align-items: center;
}

.language-copy h2 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -0.05em;

    color: var(--media-text);
}

.language-copy h2 span {
    display: block;
    color: var(--media-accent);
}

.language-copy p {
    max-width: 550px;

    margin: 27px 0 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: var(--media-text-secondary);
}

.language-visual {
    position: relative;

    height: 460px;

    border: 1px solid rgba(28,95,163,0.12);
    border-radius: 14px;

    background:
        radial-gradient(
            circle at center,
            rgba(44,122,200,0.10),
            transparent 42%
        ),
        #091827;

    overflow: hidden;
}

.language-visual::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.language-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 175px;
    height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(92,157,211,0.4);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(44,122,200,0.22),
            rgba(7,22,36,0.95) 70%
        );
    z-index: 5;
}

.language-core span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.15em;

    color: #73a9d7;
}

.language-core strong {
    max-width: 120px;

    margin-top: 8px;

    font-family: "Syne", sans-serif;
    font-size: 14px;
    line-height: 1.1;

    color: #fff;
}

.language-node {
    position: absolute;

    padding: 9px 13px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;

    background: rgba(255,255,255,0.045);

    font-size: 15px;

    color: rgba(255,255,255,0.82);

    z-index: 4;
}

.lang-1 {
    left: 10%;
    top: 20%;
}

.lang-2 {
    left: 43%;
    top: 9%;
}

.lang-3 {
    right: 9%;
    top: 23%;
}

.lang-4 {
    right: 8%;
    bottom: 23%;
}

.lang-5 {
    left: 42%;
    bottom: 9%;
}

.lang-6 {
    left: 9%;
    bottom: 22%;
}

.lang-7 {
    left: 17%;
    top: 49%;
}

.lang-8 {
    right: 25%;
    top: 51%;
}


/* =========================================================
   QUESTIONS
========================================================= */

.media-questions {
    padding: 120px 0;

    background: #fff;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    margin-top: 65px;

    border-top: 1px solid var(--media-border-subtle);
}

.question {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;

    min-height: 130px;

    padding: 27px 20px;

    border-bottom: 1px solid var(--media-border-subtle);
}

.question:nth-child(odd) {
    border-right: 1px solid var(--media-border-subtle);
}

.question span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;

    color: var(--media-accent);
}

.question p {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.025em;

    color: var(--media-text);
}


/* =========================================================
   FINAL CTA
========================================================= */

.media-final-cta {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(44,122,200,0.15),
            transparent 42%
        ),
        #091827;

    overflow: hidden;
}

.media-final-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.final-cta-inner {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.media-final-cta .section-eyebrow {
    color: #72aee1;
}

.media-final-cta h2 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.055em;

    color: #fff;
}

.media-final-cta h2 span {
    display: block;
    color: #65a8da;
}

.media-final-cta p {
    max-width: 680px;

    margin: 28px auto 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: rgba(255,255,255,0.62);
}

.media-final-cta .primary-button {
    margin-top: 35px;

    background: #2c7ac8;
}

.media-final-cta .primary-button:hover {
    background: #3b8bd9;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .media-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .media-hero-copy {
        max-width: 760px;
    }

    .media-hero-visual {
        max-width: 800px;
    }

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

    .challenge-item:nth-child(2) {
        border-right: 0;
    }

    .challenge-item:nth-child(3),
    .challenge-item:nth-child(4) {
        border-top: 1px solid var(--media-border-subtle);
    }

    .workflow-layout,
    .language-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .language-visual {
        max-width: 760px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .section-container {
        width: min(100% - 32px, 1180px);
    }

    .media-hero {
        min-height: auto;

        padding: 80px 0 70px;
    }

    .media-hero-grid {
        width: min(100% - 32px, 1280px);
        gap: 45px;
    }

    .media-hero h1 {
        font-size: clamp(46px, 13vw, 66px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        justify-content: center;
    }

    .story-field {
        height: 400px;
    }

    .story-node {
        width: 115px;
        padding: 9px;
    }

    .story-node strong {
        font-size: 10px;
    }

    .story-node small {
        font-size: 8px;
    }

    .story-core {
        width: 125px;
        height: 125px;
    }

    .story-core strong {
        font-size: 14px;
    }

    .story-line {
        opacity: 0.6;
    }

    .media-challenge,
    .media-intelligence,
    .media-workflow,
    .media-language,
    .media-questions,
    .media-final-cta {
        padding: 85px 0;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }

    .challenge-item,
    .challenge-item:nth-child(2),
    .challenge-item:nth-child(3),
    .challenge-item:nth-child(4) {
        min-height: auto;

        border-right: 0;
        border-top: 0;

        border-bottom: 1px solid var(--media-border-subtle);
    }

    .challenge-item:last-child {
        border-bottom: 0;
    }

    .challenge-number {
        margin-bottom: 35px;
    }

    .challenge-callout {
        align-items: flex-start;

        padding: 20px;
    }

    .intelligence-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }

    .intelligence-card {
        min-height: auto;
    }

    .card-visual {
        height: 175px;
    }

    .workflow-layout {
        gap: 45px;
    }

    .workflow-copy h2,
    .language-copy h2 {
        font-size: 43px;
    }

    .language-visual {
        height: 390px;
    }

    .language-node {
        font-size: 12px;
        padding: 7px 10px;
    }

    .language-core {
        width: 145px;
        height: 145px;
    }

    .language-core strong {
        font-size: 14px;
    }

    .questions-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .question:nth-child(odd) {
        border-right: 0;
    }

    .question {
        min-height: auto;
        padding: 23px 8px;
    }

    .question p {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .media-hero h1 {
        font-size: 45px;
    }

    .story-field {
        height: 360px;
    }

    .story-node {
        width: 100px;
    }

    .story-node-1 {
        left: 5%;
    }

    .story-node-2 {
        right: 5%;
    }

    .story-node-3 {
        left: 5%;
    }

    .story-node-4 {
        right: 5%;
    }

    .story-core {
        width: 110px;
        height: 110px;
    }

    .story-core strong {
        font-size: 12px;
    }

    .story-core small {
        font-size: 7px;
    }

    .language-visual {
        height: 350px;
    }

    .lang-1 {
        left: 5%;
    }

    .lang-3 {
        right: 5%;
    }

    .lang-6 {
        left: 5%;
    }

    .lang-4 {
        right: 5%;
    }

}


