:root {
    --bg: #070b14;
    --panel: #101722;
    --panel-soft: rgba(18, 25, 37, 0.78);
    --line: rgba(255, 255, 255, 0.11);
    --text: #f7fbff;
    --muted: #9ca8ba;
    --cyan: #00f0ff;
    --pink: #ff3f6f;
    --white: #ffffff;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

main,
section,
div,
article,
aside,
nav {
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: rgba(0, 240, 255, 0.62) rgba(7, 11, 20, 0.92);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background:
        linear-gradient(180deg, rgba(7, 11, 20, 0.96), rgba(3, 36, 43, 0.88));
}

::-webkit-scrollbar-thumb {
    border: 3px solid rgba(7, 11, 20, 0.96);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(0, 240, 255, 0.92), rgba(255, 63, 111, 0.76));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 18px rgba(0, 240, 255, 0.32);
}

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(0, 240, 255, 0.88));
}

::-webkit-scrollbar-corner {
    background: rgba(7, 11, 20, 0.96);
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 240, 255, 0.14), transparent 34rem),
        radial-gradient(circle at 6% 52%, rgba(255, 63, 111, 0.09), transparent 28rem),
        var(--bg);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

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

@media (hover: hover) and (pointer: fine) {
    body.has-cursor,
    body.has-cursor a,
    body.has-cursor button,
    body.has-cursor input,
    body.has-cursor textarea,
    body.has-cursor [role="button"] {
        cursor: none;
    }
}

.cursor-dot,
.cursor-ring,
.cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    will-change: transform;
}

.cursor-dot {
    width: 28px;
    height: 32px;
    margin: -3px 0 0 -4px;
    background: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.72)) drop-shadow(0 0 24px rgba(255, 63, 111, 0.3));
    transform: translate3d(-100px, -100px, 0);
}

.cursor-dot::before,
.cursor-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(-12deg);
    transform-origin: 4px 3px;
}

.cursor-dot::before {
    background: linear-gradient(135deg, #ffffff 0%, #f5c1a4 42%, var(--cyan) 100%);
    clip-path: polygon(0 0, 0 25px, 8px 18px, 13px 31px, 18px 29px, 13px 16px, 25px 16px);
}

.cursor-dot::after {
    inset: 3px 0 0 3px;
    background: rgba(7, 11, 20, 0.42);
    clip-path: polygon(0 0, 0 17px, 5px 12px, 9px 22px, 12px 21px, 8px 10px, 17px 10px);
}

.cursor-ring {
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 1px solid rgba(245, 193, 164, 0.7);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle, rgba(245, 193, 164, 0.12), transparent 62%);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.2), inset 0 0 18px rgba(255, 63, 111, 0.1);
    mix-blend-mode: screen;
    transform: translate3d(-100px, -100px, 0);
}

.cursor-label {
    padding: 5px 8px;
    border: 1px solid rgba(0, 240, 255, 0.34);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(7, 11, 20, 0.82);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    transform: translate3d(-100px, -100px, 0);
}

.has-cursor .cursor-dot,
.has-cursor .cursor-ring {
    opacity: 1;
}

.has-cursor.cursor-active .cursor-dot {
    filter: drop-shadow(0 0 14px rgba(255, 63, 111, 0.86)) drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

.has-cursor.cursor-active .cursor-dot::before {
    background: linear-gradient(135deg, #ffffff 0%, #ffb6c8 38%, var(--pink) 100%);
}

.has-cursor.cursor-active .cursor-ring {
    width: 68px;
    height: 68px;
    margin: -34px 0 0 -34px;
    border-color: rgba(255, 63, 111, 0.68);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 18%),
        radial-gradient(circle, rgba(255, 63, 111, 0.14), transparent 64%);
    box-shadow: 0 0 24px rgba(255, 63, 111, 0.24), inset 0 0 22px rgba(0, 240, 255, 0.12);
}

.has-cursor.cursor-active .cursor-label {
    opacity: 1;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 20;
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 11, 20, 0.72);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(0, 240, 255, 0.26);
    background: rgba(7, 11, 20, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.brand,
.brand-logo {
    display: block;
}

.brand-logo {
    width: auto;
    max-width: 164px;
    height: 40px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #c9d4e4;
    font-size: 14px;
    font-weight: 800;
}

.site-nav a:hover {
    color: var(--cyan);
}

.site-nav a {
    position: relative;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 42px;
    padding: 144px max(24px, calc((100vw - 1180px) / 2)) 82px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(7, 11, 20, 0.96) 0%, rgba(8, 13, 24, 0.94) 46%, rgba(3, 36, 43, 0.82) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
}

.hero-content,
.hero-metrics,
.hero-showcase {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 940px;
}

.tagline {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 26px;
    margin: 0 0 34px;
    border: 1px solid rgba(0, 240, 255, 0.42);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.07);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 980px;
    margin: 0;
    color: var(--white);
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 900;
    overflow-wrap: anywhere;
    text-shadow: 4px 5px 0 rgba(255, 63, 111, 0.72), -4px -3px 0 rgba(0, 187, 255, 0.7);
}

.hero-copy {
    max-width: 700px;
    margin: 34px 0 0;
    color: #b4bfce;
    font-size: 22px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 14px;
    align-self: center;
}

.showcase-card {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(5, 8, 17, 0.56));
}

.showcase-card img,
.campaign-gallery img,
.platform-card img,
.case-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card.large {
    grid-row: span 2;
    aspect-ratio: 0.84;
}

.showcase-card.tall {
    aspect-ratio: 0.74;
}

.showcase-card.wide {
    aspect-ratio: 1.28;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 900;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
    color: #041015;
    background: var(--cyan);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.14), 0 16px 42px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.button.secondary {
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover,
.button.secondary:focus-visible {
    border-color: rgba(0, 240, 255, 0.42);
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.08);
    transform: translateY(-2px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin-top: 70px;
}

.hero-metrics span {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--cyan);
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-metrics span:hover {
    border-color: rgba(0, 240, 255, 0.52);
    background: rgba(0, 240, 255, 0.09);
    box-shadow: 0 18px 48px rgba(0, 240, 255, 0.1);
    transform: translateY(-4px);
}

.section {
    padding: 112px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
    width: min(1120px, 100%);
}

.eyebrow {
    position: relative;
    margin: 0 0 14px;
    padding-left: 16px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.38em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--cyan) 0 42%, rgba(0, 240, 255, 0.34) 58%, transparent 72%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.78), 0 0 22px rgba(0, 240, 255, 0.34);
    animation: pointGlow 2.8s ease-in-out infinite;
}

@keyframes pointGlow {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.72), 0 0 22px rgba(0, 240, 255, 0.28);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 14px rgba(0, 240, 255, 0.9), 0 0 32px rgba(0, 240, 255, 0.42);
        transform: scale(1.12);
    }
}

.section-heading h2,
.contact-band h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 3.7vw, 52px);
    line-height: 1.16;
    font-weight: 700;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
}

.lead {
    max-width: 1060px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.pillar-grid,
.service-grid,
.network-grid,
.strength-list {
    display: grid;
    gap: 18px;
    margin-top: 48px;
}

.pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card,
.service-grid article,
.network-grid article,
.strength-list article,
.process-list li {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.pillar-card:hover,
.service-grid article:hover,
.strength-list article:hover,
.process-list li:hover,
.case-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 28px 80px rgba(0, 240, 255, 0.1);
    transform: translateY(-6px);
}

.pillar-card {
    min-height: 260px;
    padding: 30px;
}

.card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #041015;
    background: var(--cyan);
    font-weight: 900;
}

.pillar-card h3 {
    margin: 42px 0 14px;
    font-size: 28px;
}

.pillar-card p,
.service-grid p,
.network-grid p,
.strength-list p,
.process-list p,
.contact-band p {
    color: var(--muted);
    line-height: 1.72;
}

.services,
.strengths,
.cases {
    background: rgba(255, 255, 255, 0.025);
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
    position: relative;
    overflow: hidden;
    min-height: 156px;
    padding: 24px;
}

.service-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
}

.service-grid h3,
.service-grid p {
    position: relative;
}

.service-sns::before,
.service-influencer::before {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.service-video::before {
    background: #ff0033;
}

.service-naver::before {
    background: #03c75a;
}

.service-viral::before {
    background: linear-gradient(135deg, #111111, #00f0ff);
}

.service-content::before {
    background: linear-gradient(135deg, #00f0ff, #ff3f6f);
}

.service-performance::before {
    background: #0866ff;
}

.service-report::before {
    background: linear-gradient(135deg, #00f0ff, #ffffff);
}

.campaign-gallery {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 18px;
    margin-top: 34px;
}

.campaign-gallery img {
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, filter 220ms ease;
}

.showcase-card:hover,
.campaign-gallery img:hover,
.platform-card:hover img,
.case-card:hover img {
    border-color: rgba(0, 240, 255, 0.48);
    box-shadow: 0 26px 76px rgba(0, 240, 255, 0.12);
    transform: translateY(-6px) scale(1.015);
    filter: saturate(1.12) contrast(1.04);
}

.service-grid h3,
.network-grid strong,
.strength-list h3 {
    margin: 0;
    color: var(--white);
    font-size: 21px;
}

.network {
    height: var(--network-scroll-height, 180vh);
    padding: 0;
    overflow: clip;
    scroll-snap-align: none;
}

.network-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    contain: paint;
    padding: 112px max(24px, calc((100vw - 1180px) / 2));
}

.network-viewport {
    width: 100%;
    max-width: 100%;
    margin-top: 48px;
    overflow: hidden;
    padding-bottom: 18px;
    contain: paint;
}

.network-grid {
    display: flex;
    gap: 18px;
    width: max-content;
    margin-top: 0;
    margin-right: 0;
    overflow: visible;
    padding: 0;
    scroll-padding-left: 0;
    scroll-snap-type: none;
    scrollbar-color: rgba(0, 240, 255, 0.58) rgba(255, 255, 255, 0.06);
    scrollbar-width: thin;
    transform: translate3d(calc(var(--network-x, 0px) * -1), 0, 0);
    will-change: transform;
}

.network-grid::-webkit-scrollbar {
    height: 10px;
}

.network-grid::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.network-grid::-webkit-scrollbar-thumb {
    border: 2px solid rgba(10, 15, 26, 0.98);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.network-grid article {
    flex: 0 0 390px;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 30px;
    scroll-snap-align: start;
}

.network-grid strong {
    display: block;
    padding-left: 16px;
    border-left: 4px solid var(--platform, var(--pink));
    font-size: 26px;
}

.platform-card {
    display: grid;
    grid-template-rows: auto auto 180px;
    gap: 16px;
}

.platform-card:hover {
    border-color: color-mix(in srgb, var(--platform) 74%, white 10%);
    box-shadow: 0 28px 80px color-mix(in srgb, var(--platform) 26%, transparent);
    transform: translateY(-6px);
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: var(--platform-bg, transparent);
    pointer-events: none;
    transition: opacity 220ms ease;
}

.platform-card:hover::before {
    opacity: 0.34;
}

.platform-card strong,
.platform-card p,
.platform-card img {
    position: relative;
    z-index: 1;
}

.platform-card img {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, filter 220ms ease;
}

.instagram {
    --platform: #f56040;
    --platform-bg: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.meta {
    --platform: #0866ff;
    --platform-bg: linear-gradient(135deg, #0866ff, #00d1ff);
}

.youtube {
    --platform: #ff0033;
    --platform-bg: linear-gradient(135deg, #ff0033, #290000);
}

.tiktok {
    --platform: #00f2ea;
    --platform-bg: linear-gradient(135deg, #00f2ea, #ff0050);
}

.threads {
    --platform: #ffffff;
    --platform-bg: linear-gradient(135deg, #111111, #6f7887);
}

.naver {
    --platform: #03c75a;
    --platform-bg: linear-gradient(135deg, #03c75a, #0b5f32);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.case-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.case-card img {
    aspect-ratio: 16 / 10;
}

.case-card div {
    padding: 24px;
}

.case-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.case-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    line-height: 1.35;
}

.strength-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strength-list article {
    padding: 28px;
}

.strength-list span,
.process-list span {
    display: block;
    margin-bottom: 18px;
    color: var(--cyan);
    font-weight: 900;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    gap: 14px;
    padding: 0;
    margin: 52px 0 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-color: rgba(0, 240, 255, 0.58) rgba(255, 255, 255, 0.06);
    scrollbar-width: thin;
}

.process-list::-webkit-scrollbar {
    height: 10px;
}

.process-list::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.process-list::-webkit-scrollbar-thumb {
    border: 2px solid rgba(10, 15, 26, 0.98);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.process-list li {
    min-height: 170px;
    padding: 24px;
}

.process-list strong {
    display: block;
    color: var(--white);
    font-size: 20px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
}

.industry-tags span {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    border: 1px solid rgba(0, 240, 255, 0.28);
    border-radius: 8px;
    color: var(--white);
    background: rgba(0, 240, 255, 0.06);
    font-size: 18px;
    font-weight: 900;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.industry-tags span:hover {
    border-color: rgba(255, 63, 111, 0.54);
    color: var(--white);
    background: rgba(255, 63, 111, 0.12);
    box-shadow: 0 16px 44px rgba(255, 63, 111, 0.12);
    transform: translateY(-4px);
}

.contact-band {
    padding: 118px max(24px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(135deg, rgba(0, 240, 255, 0.16), rgba(255, 63, 111, 0.1)),
        #090d17;
}

.contact-band p:not(.eyebrow) {
    max-width: 760px;
    margin: 22px 0 34px;
    font-size: 20px;
}

.contact-form {
    max-width: 860px;
    margin-top: 34px;
}

.contact-form > input[name="website"] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label + label,
.form-grid + label {
    margin-top: 14px;
}

.contact-form span {
    color: #c7d2e3;
    font-size: 13px;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: var(--white);
    background: rgba(5, 8, 17, 0.58);
    box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.02);
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
    height: 52px;
    padding: 0 16px;
}

.contact-form textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(0, 240, 255, 0.58);
    background: rgba(5, 8, 17, 0.76);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.64;
    transform: none;
}

.form-status {
    min-height: 28px;
    margin: 16px 0 0;
    color: #c7d2e3;
    font-size: 15px;
    font-weight: 800;
}

.form-status[data-state="success"] {
    color: var(--cyan);
}

.form-status[data-state="error"] {
    color: #ff9aad;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding: 28px max(24px, calc((100vw - 1180px) / 2));
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #050811;
    font-size: 14px;
    font-weight: 800;
}

.floating-cta {
    position: fixed;
    right: max(22px, calc((100vw - 1180px) / 2));
    bottom: 24px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(0, 240, 255, 0.52);
    border-radius: 999px;
    color: #041015;
    background: linear-gradient(135deg, var(--cyan), #a7fbff);
    box-shadow: 0 18px 54px rgba(0, 240, 255, 0.22), 0 0 0 6px rgba(0, 240, 255, 0.08);
    font-size: 15px;
    font-weight: 900;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-cta::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 9px;
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 0 12px rgba(255, 63, 111, 0.9), 0 0 28px rgba(255, 63, 111, 0.38);
}

.floating-cta:hover,
.floating-cta:focus-visible {
    border-color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, var(--white), var(--cyan));
    box-shadow: 0 22px 68px rgba(0, 240, 255, 0.28), 0 0 0 8px rgba(255, 63, 111, 0.1);
    transform: translateY(-4px);
}

@media (max-width: 980px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        right: 0;
        display: none;
        width: min(280px, calc(100vw - 20px));
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(7, 11, 20, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 128px;
    }

    .hero h1 {
        text-shadow: 3px 4px 0 rgba(255, 63, 111, 0.7), -3px -2px 0 rgba(0, 187, 255, 0.7);
    }

    .hero-metrics,
    .pillar-grid,
    .service-grid,
    .strength-list,
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-showcase {
        grid-template-columns: 1fr 1fr;
        max-width: 680px;
    }

    .section {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .network-sticky {
        padding-top: 82px;
        padding-bottom: 82px;
    }
}

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
    html {
        scroll-snap-type: y proximity;
    }

    .hero,
    .section,
    .contact-band {
        scroll-margin-top: 92px;
        scroll-snap-align: start;
    }

    .network {
        scroll-margin-top: 0;
        scroll-snap-align: none;
    }
}

@media (max-width: 620px) {
    .brand-logo {
        max-width: 136px;
        height: 34px;
    }

    .tagline {
        display: block;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0 14px;
        font-size: 11px;
        line-height: 1.45;
        letter-spacing: 0.08em;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    .hero-copy,
    .lead,
    .contact-band p:not(.eyebrow) {
        font-size: 18px;
        word-break: break-all;
    }

    .section-heading h2,
    .contact-band h2 {
        word-break: keep-all;
        overflow-wrap: normal;
        text-wrap: balance;
    }

    .button {
        width: 100%;
    }

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

    .form-actions {
        display: grid;
    }

    .floating-cta {
        right: 16px;
        bottom: 16px;
        min-width: 126px;
        min-height: 48px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-metrics,
    .pillar-grid,
    .service-grid,
    .strength-list,
    .case-grid,
    .campaign-gallery {
        grid-template-columns: 1fr;
    }

    .network-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: auto;
        margin-top: 48px;
        margin-right: 0;
        overflow-x: visible;
        padding-right: 0;
        padding-bottom: 0;
        scroll-snap-type: none;
        transform: none;
    }

    .network-viewport {
        margin-top: 0;
        overflow: visible;
        padding-bottom: 0;
        contain: none;
    }

    .network-grid article {
        flex-basis: auto;
    }

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

    .showcase-card.large,
    .showcase-card.tall,
    .showcase-card.wide {
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .platform-card {
        grid-template-rows: auto auto 160px;
    }

    .process-list {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
    .eyebrow::before {
        animation: none;
    }

    .cursor-dot,
    .cursor-ring,
    .cursor-label {
        display: none;
    }

    .button,
    .showcase-card,
    .campaign-gallery img,
    .platform-card,
    .platform-card img,
    .pillar-card,
    .service-grid article,
    .strength-list article,
    .process-list li,
    .case-card,
    .industry-tags span,
    .hero-metrics span {
        transition: none;
    }
}
