/* =========================================================
  BASE TOKENS
========================================================= */
:root {
    /* theme */
    --bg: #fff8f3;
    --ink: #111;
    --muted: #6b665e;
    --accent: #ff761a;

    /* layout */
    --max: 1200px;
    --pad: clamp(16px, 3.2vw, 40px);
    --r: 18px;
    --header-h: clamp(64px, 6vw, 96px);

    /* lines / motion */
    --line: rgba(17, 17, 17, .14);
    --lw: 2px;
    /* process grid gap/line */
    --radius: 0px;
    /* cell border radius override */
    --ease: cubic-bezier(.2, .8, .2, 1);

    /* pill (why) */
    --pill-line: #111;
    --pill-orange: #ff761a;
    --pill-stroke: 1px;
    --pill-w: min(980px, 92vw);
    --pill-h: 92px;
    --pill-knob: 56px;
    --pill-gap: 16px;
    --pill-ease: cubic-bezier(.2, .85, .2, 1);

    /* craft */
    --accent: #ff761a;
    --ink: #111;
    --muted: #6b665e;
}

/* =========================================================
  RESET / GLOBAL
========================================================= */

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Suit', -apple-system, "Noto Sans KR", sans-serif;
    letter-spacing: -.01em;
    font-weight: 500;
    word-break: keep-all;
    overscroll-behavior: none;
}

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

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

.wrap {
    width: min(var(--max), 100% - (var(--pad) * 2));
    margin: 0 auto;
}

.caps {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
}

.small {
    display: block;
    font-size: 24px;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 300;
    margin-bottom: .5em;
}

.muted {
    color: var(--muted);
    font-weight: 600;
}

.dot {
    width: .55em;
    height: .55em;
    border-radius: 999px;
    background: var(--accent);
    display: inline-block;
    vertical-align: middle;
}

/* =========================================================
  HERO
========================================================= */
.hero {
    padding: 0;
    padding-bottom: 0;
    background: var(--bg);
}

.hero__video {
    position: relative;
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    box-sizing: border-box;
    overflow: hidden;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: var(--pad);
}

.hero__title {
    --hero-display: clamp(64px, 14vw, 250px);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-weight: lighter;
}

.hero__eyebrow {
    margin-bottom: clamp(22px, 4vh, 46px);
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    position: relative;
    z-index: 1;
}

.hero__dgrrRow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: clamp(150px, 20vw, 300px);
}

.hero__dgrrVideo {
    display: block;
    flex: 0 1 auto;
    width: min(68vw, 860px);
    height: auto;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    transform: translateY(-35%);
}

.hero__dgrrRoll {
    --roll-dur: 0.78s;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: clamp(0.16em, 1.4vw, 0.5em);
    max-width: 100%;
    font-size: var(--hero-display);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.hero__letter--dot {
    display: inline-block;
    flex: 0 0 auto;
    line-height: 1;
    align-self: baseline;
}

.hero__rollDot {
    display: block;
    width: 0.16em;
    height: 0.16em;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transform: none;
}

.hero__letter {
    display: inline-block;
    transform-origin: 50% 50%;
    opacity: 0;
    will-change: transform, opacity;
    animation: heroDgrrRoll var(--roll-dur) cubic-bezier(.2, 0.88, .15, 1) forwards;
    animation-delay: calc(var(--roll-dur) * var(--i));
}

/* 주황 점은 굴림 대신 위에서 낙하 */
.hero__letter.hero__letter--dot {
    transform-origin: 50% 0%;
    animation: heroDotDrop 0.92s cubic-bezier(.22, 1.12, .3, 1) forwards;
    animation-delay: calc(var(--roll-dur) * var(--i));
}

@keyframes heroDgrrRoll {
    0% {
        opacity: 0;
        transform: translate3d(calc(-12vw - 2.2em), 0, 0) rotateZ(-2.5turn);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateZ(0deg);
    }
}

@keyframes heroDotDrop {
    0% {
        opacity: 0;
        transform: translate3d(0, -2.8em, 0) scale(0.86);
    }

    58% {
        opacity: 1;
        transform: translate3d(0, 0.18em, 0) scale(1.12, 0.9);
    }

    76% {
        transform: translate3d(0, -0.16em, 0) scale(0.97, 1.04);
    }

    88% {
        transform: translate3d(0, 0.06em, 0) scale(1.03, 0.98);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__letter {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.hero__copy {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    min-height: clamp(360px, 44vw, 620px);
    padding: clamp(320px, 24vw, 420px) var(--pad) clamp(90px, 12vw, 180px);
    background: var(--bg);
    text-align: left;
}

.hero__copy p {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - var(--pad) * 2));
    margin: 0 auto;
    font-size: clamp(16px, 2vw, 28px);
    color: #222;
    font-weight: 400;
    line-height: 1.25;
}

.hero__copy p strong {
    display: inline-block;
    margin-bottom: 1em;
    font-size: clamp(20px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1;
}

.hero__workLink {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: .28em;
    width: min(1200px, calc(100% - var(--pad) * 2));
    margin: clamp(40px, 5vw, 72px) auto 0;
    color: var(--accent);
    font-size: clamp(20px, 2.8vw, 40px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.hero__workLink i {
    display: inline-grid;
    place-items: center;
    width: .98em;
    height: .98em;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
}

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

.hero__copyLetter {
    position: absolute;
    display: block;
    font-size: clamp(62px, 8vw, 150px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -0.08em;
    color: var(--ink);
}

.hero__copyLetter--d {
    top: 18%;
    left: 40%;
    transform: rotate(-15deg);
}

.hero__copyLetter--g {
    top: 0%;
    left: 64%; 
    transform: rotate(-304deg);
}
.hero__copyLetter--r1 {
    top: 28%;
    right: 12%;    
    transform: rotate(-54deg);
}

.hero__copyLetter--r2 {
    top: 65%;
    right: 0;
    transform: rotate(-300deg);
}



/* =========================================================
  SECTION SHELL
========================================================= */
section {
    padding: clamp(46px, 6vw, 84px) 0;
}

.sec-title {
    align-items: baseline;
    margin: 10em 0;
}

.sec-title h2 {
    margin: 0;
    font-size: clamp(32px, 2.5vw, 50px);
    letter-spacing: -.02em;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 2vw;
}

/* =========================================================
  PROCESS GRID (TABLE)
========================================================= */
.process .sec-title {
    width: 80%;
    margin: 10em auto;
}

.process .wrap {
    width: 100%;
}

.frame {
    background: var(--ink);
    padding: var(--lw);
    width: 100vw;
}

.grid {
    display: grid;
    gap: var(--lw);
    background: var(--ink);

    /* PC: 4col x 3row */
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px 220px;

    grid-template-areas:
        "plan     dir      shoot    edit"
        "blank1   dirstack blank3   editstack"
        "planlist orangecut shootlist orangeb";
}

.cell {
    background: #fff;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

/* area mapping */
.c-plan {
    grid-area: plan;
}

.c-dir {
    grid-area: dir;
}

.c-shoot {
    grid-area: shoot;
}

.c-edit {
    grid-area: edit;
}

.c-mid-blank1 {
    grid-area: blank1;
}

.c-mid-stack-dir {
    grid-area: dirstack;
}

.c-mid-blank3 {
    grid-area: blank3;
}

.c-mid-stack-edit {
    grid-area: editstack;
}

.c-bot-list-plan {
    grid-area: planlist;
}

.c-bot-orangecut {
    grid-area: orangecut;
}

.c-bot-list-shoot {
    grid-area: shootlist;
}

.c-bot-orangeb {
    grid-area: orangeb;
}

/* head */
.head {
    padding: 28px 28px 24px;
    letter-spacing: -.02em;
}

.head .num,
.head .txt {
    font-size: 34px;
    font-weight: 400;
}

.head .num {
    margin-bottom: 10px;
}

.head .txt {
    padding-left: .5em;
}

/* plan: left orange half pill */
.head--plan::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    background: var(--accent);
    border-radius: 0 10em 10em 0;
}

.head--plan .num,
.head--plan .txt {
    position: relative;
    z-index: 1;
}

/* edit: right orange half pill */
.head--edit::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 30%;
    background: var(--accent);
    border-radius: 10em 0 0 10em;
}

/* stack */
.stack {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 0;
}

.stack .item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-bottom: var(--lw) solid var(--ink);
    padding: 0 10px;
    font-weight: 400;
}

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

/* list */
.list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 0;
}

.list .row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 22px;
    border-bottom: var(--lw) solid var(--ink);
    padding: 0 10px;
    font-weight: 400;
}

.list .row:last-child {
    border-bottom: 0;
}

/* align tweaks */
.c-bot-list-plan .row:nth-child(2) {
    justify-content: center;
}

.c-bot-list-plan .row:last-child {
    justify-content: flex-end;
}

.c-mid-stack-dir .item {
    justify-content: flex-end;
    text-align: right;
    padding-right: 24px;
}

.c-bot-list-shoot .row:nth-child(2) {
    justify-content: flex-end;
}

.c-mid-stack-edit .item:first-child {
    justify-content: flex-end;
    padding-right: 24px;
}

.c-mid-stack-edit .item:last-child {
    justify-content: flex-start;
    padding-left: 24px;
}

/* orange shapes */
.orange-cut::before,
.orange-cut::after {
    content: "";
    position: absolute;
    left: 0;
    width: 50%;
    height: 50%;
    background: var(--accent);
    border-radius: 0 10em 10em 0;
}

.orange-cut::before {
    top: 0;
}

.orange-cut::after {
    bottom: 0;
}

.orange-b::before,
.orange-b::after {
    content: "";
    position: absolute;
    right: 0;
    width: 50%;
    height: 50%;
    background: var(--accent);
    border-radius: 10em 0 0 10em;
}

.orange-b::before {
    top: 0;
}

.orange-b::after {
    bottom: 0;
}

/* =========================================================
  WHY (PIN + PILL)
========================================================= */
.why .sec-title {
    margin: 0 0 5em;
    width: var(--pill-w);
}

.pin-wrap {
    position: relative;
}

.pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stage {
    width: var(--pill-w);
    display: grid;
    gap: 22px;
}

/* pill */
.pill {
    width: var(--pill-w);
    height: var(--pill-h);
    position: relative;
}

.pill-label {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    cursor: pointer;
    z-index: 6;
}

input.pill-check {
    appearance: none;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: var(--pill-stroke) solid var(--pill-line);
    background: #fff;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
}

/* text */
.pill-text {
    position: absolute;
    top: 4px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-left: calc(var(--pill-gap) + var(--pill-knob) + 18px);
    padding-right: calc(var(--pill-gap) + var(--pill-knob) + 18px);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
    pointer-events: none;
}

.pill-text span {
    position: absolute;
    white-space: nowrap;
    transition: opacity .25s var(--pill-ease), transform .25s var(--pill-ease);
}

.pill-text .a {
    right: calc(var(--pill-gap) + var(--pill-knob) + 18px);
    opacity: 1;
}

.pill-text .b {
    left: calc(var(--pill-gap) + var(--pill-knob) + 18px);
    opacity: 0;
    transform: translateY(2px);
}

/* mark */
.mark {
    position: absolute;
    left: var(--pill-gap);
    top: 50%;
    width: var(--pill-knob);
    height: var(--pill-knob);
    transform: translateY(-42%);
    z-index: 3;
    pointer-events: none;
    transition: left .25s var(--pill-ease);
    background: var(--pill-orange);
    border-radius: 50%;
    border: var(--pill-stroke) solid var(--pill-line);
}

.mark svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    overflow: visible;
    transition: opacity .15s linear, transform .15s linear;
}

.mark .ico-x {
    opacity: 1;
}

.mark .ico-o {
    opacity: 0;
}

.mark svg * {
    fill: none;
    stroke: var(--ink);
    stroke-width: 3.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

/* checked */
input.pill-check:checked {
    background: var(--pill-orange);
    box-shadow: none;
}

/* 너 코드에 ::before thumb는 주석 처리 상태라서,
   dragging/checked에서 left 이동은 mark 기준으로만 관리하는 게 안전함 */

.pill.is-checked .pill-text .a {
    opacity: 0;
    transform: translateY(-2px);
}

.pill.is-checked .pill-text .b {
    opacity: 1;
    transform: translateY(0);
}

.pill.is-checked .mark {
    left: calc(100% - var(--pill-gap) - var(--pill-knob));
    background: #fff;
}

.pill.is-checked .mark .ico-x {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
}

.pill.is-checked .mark .ico-o {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* dragging */
.pill.is-dragging .mark {
    transition: none;
    left: var(--thumb-left);
}

/* =========================================================
  ORANGE MOSAIC
========================================================= */

/* =========================
      PIN SECTION
    ========================= */
.work-pin {
    /* background: var(--accent); */
    padding: 0 !important;

    background: radial-gradient(129% 99% at 112% 85%,
            rgb(255, 244, 237) 20%,
            rgb(255, 118, 26) 90%),
        url("https://assets.codepen.io/16327/noise-e82662fe.png");
    background-blend-mode: color-dodge;
}

.work-stage {
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* background: var(--accent); */
    transform: translateZ(0);

    background: radial-gradient(129% 99% at 112% 85%,
            rgb(255, 244, 237) 20%,
            rgb(255, 118, 26) 90%),
        url("https://assets.codepen.io/16327/noise-e82662fe.png");
    background-blend-mode: color-dodge;
}

.work-layout {
    width: min(1180px, 92vw);
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.work-vignette {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .16), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, .10), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, .10), transparent 55%);
    mix-blend-mode: multiply;
    opacity: .28;
    transform: translateZ(0);
}

/* center text */
.work-head {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 6;
    pointer-events: none;
    will-change: transform, opacity;
    margin: 0;
}

.work-head h2 {
    padding-left: 0;
}

/* cards */
.work-card {
    position: absolute;
    z-index: 3;
    width: 500px;
    transform: translate3d(0, 140vh, 0) scale(.96);
    will-change: transform, filter;
    backface-visibility: hidden;
    perspective: 1000px;
    cursor: pointer;
    pointer-events: auto;
}

.work-card:focus-visible {
    outline: 3px solid rgba(17, 17, 17, .7);
    outline-offset: 6px;
}

.work-card .label {
    margin: 0 0 10px;
    font-size: clamp(16px, 1.9vw, 22px);
    /* font-weight: 900; */
    color: #111;
}

.work-card .thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0b0b0b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    border-radius: 0px;
}

.work-card.c1 .thumb {
    background-image: url("../img/1.jpg");
}

.work-card.c2 .thumb {
    background-image: url("../img/2.jpg");
}

.work-card.c3 .thumb {
    background-image: url("../img/3.jpg");
}

.work-card.c4 .thumb {
    background-image: url("../img/4.jpg");
}

.work-card.c5 .thumb {
    background-image: url("../img/5.jpg");
}

/* layout (keep) */
.work-card.c1 {
    left: 12%;
    top: 24%;
}

.work-card.c2 {
    left: 60%;
    top: 29%;
}

.work-card.c3 {
    left: 22%;
    top: 35%;
}

.work-card.c4 {
    left: 70%;
    top: 41%;
}

.work-card.c5 {
    left: 12%;
    top: 46%;
}

/* CTA */
.work-cta {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* font-weight: 900; */
    letter-spacing: .06em;
    color: #111;
    z-index: 6;
    user-select: none;
    font-size: 24px;
    pointer-events: auto;
    will-change: opacity, transform;
}

.work-cta span {
    display: block;
    line-height: 1;
}

.work-cta i {
    font-style: normal;
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 2px solid rgba(17, 17, 17, .65);
    border-radius: 999px;
    transform: translateY(1px);
}

@media (max-width: 980px) {
    .work-card {
        width: min(240px, 42vw);
    }

    .work-card.c1 {
        left: 8%;
        top: 22%;
    }

    .work-card.c2 {
        left: 52%;
        top: 27%;
    }

    .work-card.c3 {
        left: 14%;
        top: 33%;
    }

    .work-card.c4 {
        left: 56%;
        top: 39%;
    }

    .work-card.c5 {
        left: 8%;
        top: 44%;
    }
}

@media (max-width: 560px) {
    .work-card {
        width: min(240px, 72vw);
    }

    .work-card.c1 {
        left: 7%;
        top: 22%;
    }

    .work-card.c2 {
        left: 44%;
        top: 28%;
    }

    .work-card.c3 {
        left: 7%;
        top: 34%;
    }

    .work-card.c4 {
        left: 44%;
        top: 40%;
    }

    .work-card.c5 {
        left: 7%;
        top: 45%;
    }

    .work-cta {
        bottom: 7%;
        font-size: 16px;
    }
}

/* =========================================================
  PARTNERS (LOGO CLOUD)
========================================================= */

.partners .sec-title p {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 400;
    padding-left: 2vw;
    padding-top: 1em;
}

.logo-pill {
    cursor: pointer;
    pointer-events: all;
}

.pill-shape {
    transition: transform .2s cubic-bezier(.2, .85, .2, 1);
    transform-box: fill-box;
    transform-origin: center;
}

.logo-pill.is-hover .pill-shape {
    /* transform: scale(1.06); */
    fill: var(--accent);
    stroke: #111;
    stroke-width: 2;
}

.logo-cursor {
    position: fixed;
    /* width: 220px; */
    /* height: 220px; */
    max-width: 400px;
    height: auto;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
    transition: opacity .2s, transform .2s;
}

.logo-cursor.on {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.logo-cursor img {
    width: 100%;
    /* height: 100%;
    object-fit: cover;
    border-radius: 14px; */
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(10px);
}

.video-modal.is-open {
    display: grid;
}

.video-modal__panel {
    width: min(980px, 100%);
    overflow: hidden;
    background: #0b0b0b;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.video-modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 10px;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.video-modal__title {
    margin: 0;
    padding-left: 6px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .85;
}

.video-modal__close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    cursor: pointer;
}

.video-modal__close svg {
    width: 18px;
    height: 18px;
}

.video-modal__body {
    aspect-ratio: 16/9;
    background: #000;
}

.video-modal__body iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================================
      CTA
    ========================================================= */
.cta {
    padding: clamp(10em, 20vw, 30em) 0;
}

.cta__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta__row h2 {
    margin: 0;
    font-size: clamp(50px, 3.2vw, 100px);
    line-height: 1.15;
    font-weight: 800;
}

.cta__row .more-link>div:first-child {
    padding-left: 0;
}

.cta__row .more-link>div:last-child {
    padding-left: 1.1em;
    display: flex;
    align-items: center;
}

.cta__row .more-link .circle {
    margin-left: 25px;
}

.more-link {
    /* display: inline-flex; */
    align-items: center;
    gap: 10px;
    font-size: clamp(20px, 3vw, 40px);
    text-transform: uppercase;
    color: var(--accent);
}

.more-link>div:first-child {
    padding-left: 1.5em;
}

.more-link>div:last-child {
    display: flex;
    align-items: center;
}

.more-link .circle {
    width: 45px;
    height: 45px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--accent) 60%, transparent);
    display: grid;
    place-items: center;
    margin-left: 10px;
}

.more-link svg {
    width: 40px;
    height: 40px;
}

/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width:1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px 220px 220px 220px;
        grid-template-areas:
            "plan      dir"
            "blank1    dirstack"
            "planlist  orangecut"
            "shoot     edit"
            "blank3    editstack"
            "shootlist orangeb";
    }
}

@media (max-width:900px) {
    .hero__copy {
        grid-template-columns: 1fr;
    }

    /* (원본 유지) */

    .mosaic {
        grid-template-columns: 1fr;
    }

    .mosaic-center {
        display: none;
    }
}

@media (max-width:768px) {
    .grid {
        grid-template-columns: 1fr;
        grid-template-rows:
            210px 180px 220px 210px 220px 210px 210px 180px 220px 210px 220px 210px;
        grid-template-areas:
            "plan"
            "blank1"
            "planlist"
            "dir"
            "orangecut"
            "dirstack"
            "shoot"
            "blank3"
            "shootlist"
            "edit"
            "orangeb"
            "editstack";
    }

    .head .num {
        font-size: 28px;
    }

    .head .txt {
        font-size: 30px;
    }

    .stack .item,
    .list .row {
        font-size: 20px;
    }

    .orange-cut::before,
    .orange-cut::after {
        left: auto;
        right: 0;
        border-radius: 10em 0 0 10em;
    }

    .head--edit::before {
        right: auto;
        left: 0;
        border-radius: 0 10em 10em 0;
    }

    .head--edit .num,
    .head--edit .txt {
        position: relative;
        z-index: 1;
    }
}

/* =========================================================
  ABOUT2 RESPONSIVE OVERRIDES
========================================================= */
.about2-page {
    overflow-x: hidden;
}

.about2-page .logo-cloud {
    width: min(1180px, 100%);
    margin: clamp(48px, 8vw, 96px) auto 0;
}

.about2-page .logo-cloud__svg {
    width: 100%;
    height: auto;
}

@media (max-width: 1180px) {
    .about2-page .work-card {
        width: min(42vw, 420px);
    }

    .about2-page .work-card.c2,
    .about2-page .work-card.c4 {
        left: 52%;
    }
}

@media (max-width: 900px) {
    .about2-page section {
        padding: clamp(52px, 9vw, 86px) 0;
    }

    .about2-page .sec-title {
        margin: clamp(54px, 10vw, 96px) 0;
    }

    .about2-page .small {
        font-size: clamp(16px, 3vw, 22px);
    }

    .about2-page .sec-title h2 {
        padding-left: 0;
        font-size: clamp(30px, 6vw, 46px);
        line-height: 1.08;
    }

    .about2-page .hero {
        padding: 0;
    }

    .about2-page .hero__video {
        height: auto;
        min-height: clamp(420px, 76svh, 720px);
        padding: clamp(28px, 6vw, 52px) var(--pad);
    }

    .about2-page .hero__title {
        --hero-display: clamp(62px, 18vw, 170px);
        width: min(100%, 760px);
        max-width: 100%;
    }

    .about2-page .hero__dgrrRow {
        justify-content: center;
        min-height: clamp(130px, 28vw, 240px);
    }

    .about2-page .hero__dgrrVideo {
        width: min(68vw, 560px);
    }

    .about2-page .hero__copy {
        width: 100%;
        margin: 0;
        min-height: clamp(340px, 62vw, 520px);
        padding: clamp(170px, 18vw, 170px) var(--pad) clamp(76px, 12vw, 130px);
        text-align: left;
    }

    .about2-page .hero__copy p {
        width: min(720px, calc(100% - var(--pad) * 2));
        font-size: clamp(17px, 2.9vw, 24px);
        line-height: 1.35;
    }

    .about2-page .hero__workLink {
        width: min(720px, calc(100% - var(--pad) * 2));
        font-size: clamp(20px, 2.8vw, 40px);
    }

    .about2-page .process .sec-title {
        width: min(var(--max), calc(100% - var(--pad) * 2));
        margin: clamp(54px, 10vw, 90px) auto;
    }

    .about2-page .grid {
        grid-template-rows: repeat(6, minmax(160px, auto));
    }

    .about2-page .head {
        padding: 22px;
    }

    .about2-page .head .num,
    .about2-page .head .txt {
        font-size: clamp(26px, 4.2vw, 34px);
    }

    .about2-page .stack .item,
    .about2-page .list .row {
        min-height: 58px;
        font-size: clamp(16px, 2.8vw, 21px);
    }

    .about2-page {
        --pill-w: min(760px, 92vw);
        --pill-h: 78px;
        --pill-knob: 48px;
        --pill-gap: 12px;
    }

    .about2-page .pin {
        height: 100svh;
        padding: var(--header-h) 0 clamp(28px, 6vw, 56px);
        justify-content: center;
    }

    .about2-page .why .sec-title {
        margin-bottom: clamp(28px, 6vw, 54px);
    }

    .about2-page .stage {
        gap: 16px;
    }

    .about2-page .pill-text {
        font-size: clamp(17px, 3.2vw, 24px);
    }

    .about2-page .work-layout {
        width: min(calc(100% - 28px), 900px);
    }

    .about2-page .work-head {
        width: min(620px, 90%);
    }

    .about2-page .work-card {
        width: min(40vw, 320px);
    }

    .about2-page .work-card .label {
        font-size: clamp(13px, 2.2vw, 17px);
    }

    .about2-page .work-card.c1 {
        left: 4%;
        top: 22%;
    }

    .about2-page .work-card.c2 {
        left: 52%;
        top: 27%;
    }

    .about2-page .work-card.c3 {
        left: 8%;
        top: 35%;
    }

    .about2-page .work-card.c4 {
        left: 50%;
        top: 42%;
    }

    .about2-page .work-card.c5 {
        left: 6%;
        top: 50%;
    }

    .about2-page .partners .sec-title p {
        padding-left: 0;
        font-size: clamp(18px, 3.6vw, 28px);
    }

    .about2-page .logo-cloud {
        margin-top: clamp(34px, 7vw, 72px);
    }

    .about2-page .cta {
        padding: clamp(90px, 16vw, 160px) 0;
    }

    .about2-page .cta__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .about2-page .cta__row h2 {
        font-size: clamp(42px, 8vw, 72px);
    }
}

@media (max-width: 768px) {
    .about2-page {
        --pad: clamp(18px, 3.2vw, 32px);
        --pill-w: calc(100vw - 36px);
        --pill-h: 66px;
        --pill-knob: 40px;
        --pill-gap: 9px;
    }

    .about2-page .hero__video {
        min-height: 58svh;
    }

    .about2-page .hero__title {
        --hero-display: clamp(54px, 20vw, 112px);
    }

    .about2-page .hero__dgrrRow {
        min-height: clamp(100px, 32vw, 160px);
    }

    .about2-page .hero__dgrrVideo {
        width: min(74vw, 420px);
    }

    .about2-page .hero__dgrrRoll {
        gap: .12em;
        letter-spacing: -0.02em;
    }

    .about2-page .hero__copy {
        margin-top: 0;
    }

    .about2-page .hero__copy p {
        width: min(480px, calc(100% - var(--pad) * 2));
        margin-left: 0;
        line-height: 1.28;
    }

    .about2-page .hero__workLink {
        width: min(480px, calc(100% - var(--pad) * 2));
        margin-left: 0;
        font-size: clamp(22px, 5vw, 34px);
    }

    .about2-page .hero__copy p strong {
        font-size: clamp(22px, 5vw, 34px);
    }

    .about2-page .hero__copy p .mobile-br {
        display: none;
    }

    .about2-page .hero__copyLetter {
        font-size: clamp(52px, 14vw, 92px);
    }

    .about2-page .process .sec-title {
        margin: clamp(52px, 8vw, 78px) auto;
    }

    .about2-page .grid {
        grid-template-columns: 1fr;
        grid-template-rows:
            clamp(120px, 18vw, 170px) clamp(120px, 18vw, 170px) clamp(180px, 24vw, 230px)
            clamp(120px, 18vw, 170px) clamp(120px, 18vw, 170px) clamp(180px, 24vw, 230px)
            clamp(120px, 18vw, 170px) clamp(120px, 18vw, 170px) clamp(180px, 24vw, 230px)
            clamp(120px, 18vw, 170px) clamp(120px, 18vw, 170px) clamp(180px, 24vw, 230px);
        grid-template-areas:
            "plan"
            "blank1"
            "planlist"
            "dir"
            "blank-dir"
            "dirstack"
            "shoot"
            "blank3"
            "shootlist"
            "edit"
            "blank-edit"
            "editstack";
    }

    .about2-page .head {
        padding: clamp(14px, 2.8vw, 22px) clamp(18px, 3vw, 24px);
    }

    .about2-page .head .num,
    .about2-page .head .txt {
        font-size: clamp(20px, 3.4vw, 27px);
        line-height: 1.12;
    }

    .about2-page .head .num {
        margin-bottom: clamp(5px, 1vw, 10px);
    }

    .about2-page .head .txt {
        padding-left: clamp(12px, 2vw, 18px);
    }

    .about2-page .c-dir::before,
    .about2-page .c-dir::after,
    .about2-page .c-edit::before,
    .about2-page .c-edit::after {
        content: "";
        position: absolute;
        left: 0;
        width: 30%;
        height: 50%;
        background: var(--accent);
        border-radius: 0 10em 10em 0;
    }

    .about2-page .c-dir::before,
    .about2-page .c-edit::before {
        top: 0;
    }

    .about2-page .c-dir::after,
    .about2-page .c-edit::after {
        bottom: 0;
    }

    .about2-page .c-dir .num,
    .about2-page .c-dir .txt,
    .about2-page .c-edit .num,
    .about2-page .c-edit .txt {
        position: relative;
        z-index: 1;
    }

    .about2-page .stack .item,
    .about2-page .list .row {
        min-height: clamp(52px, 7vw, 72px);
        justify-content: flex-end;
        padding: clamp(10px, 2vw, 16px) clamp(16px, 3vw, 24px);
        text-align: right;
        font-size: clamp(18px, 2.4vw, 20px);
    }

    .about2-page .c-mid-stack-dir .item,
    .about2-page .c-mid-stack-edit .item,
    .about2-page .c-bot-list-plan .row,
    .about2-page .c-bot-list-shoot .row {
        justify-content: flex-end;
        padding-right: clamp(16px, 3vw, 24px);
        text-align: right;
    }

    .about2-page .c-bot-orangecut,
    .about2-page .c-bot-orangeb {
        display: block;
        background: #fff;
    }

    .about2-page .c-bot-orangecut {
        grid-area: blank-dir;
    }

    .about2-page .c-bot-orangeb {
        grid-area: blank-edit;
    }

    .about2-page .c-bot-orangecut::before,
    .about2-page .c-bot-orangecut::after,
    .about2-page .c-bot-orangeb::before,
    .about2-page .c-bot-orangeb::after {
        display: none;
    }

    .about2-page .pill-text {
        padding-left: 62px;
        padding-right: 62px;
        font-size: clamp(13px, 4vw, 18px);
    }

    .about2-page .pill-text span {
        white-space: normal;
        max-width: calc(100% - 124px);
        line-height: 1.15;
    }

    .about2-page .pill-text .a {
        right: 62px;
        text-align: right;
    }

    .about2-page .pill-text .b {
        left: 62px;
    }

    .about2-page .mark svg {
        width: 24px;
        height: 24px;
    }

    .about2-page .work-stage {
        height: 100svh;
    }

    .about2-page .work-layout {
        width: calc(100% - 20px);
    }

    .about2-page .work-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .about2-page .work-card {
        width: min(72vw, 280px);
    }

    .about2-page .work-card.c1,
    .about2-page .work-card.c3,
    .about2-page .work-card.c5 {
        left: 4%;
    }

    .about2-page .work-card.c2,
    .about2-page .work-card.c4 {
        left: 24%;
    }

    .about2-page .work-card.c1 {
        top: 20%;
    }

    .about2-page .work-card.c2 {
        top: 28%;
    }

    .about2-page .work-card.c3 {
        top: 36%;
    }

    .about2-page .work-card.c4 {
        top: 44%;
    }

    .about2-page .work-card.c5 {
        top: 52%;
    }

    .about2-page .work-cta {
        bottom: 6%;
        font-size: 16px;
    }

    .about2-page .partners .sec-title {
        margin-bottom: 34px;
    }

    .about2-page .logo-cloud {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .about2-page .logo-cloud__svg {
        width: max(720px, 100%);
        max-width: none;
    }

    .about2-page .cta__row h2 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .about2-page .more-link {
        font-size: clamp(26px, 9vw, 40px);
    }

    .about2-page .more-link > div:first-child,
    .about2-page .cta__row .more-link > div:last-child {
        padding-left: 0;
    }

    .about2-page .video-modal {
        padding: 10px;
    }

    .about2-page .video-modal__panel {
        border-radius: 12px;
    }

    .about2-page .video-modal__top {
        padding: 8px;
    }

    .about2-page .video-modal__close {
        width: 34px;
        height: 34px;
    }
}