:root {
  --bg: #080b10;
  --bg-soft: #0e131b;
  --surface: #111720;
  --surface-2: #151d27;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f7f5;
  --muted: #8d9794;
  --accent: #81f6cf;
  --accent-2: #2edba7;
  --dark: #07110d;
  --container: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-pad { padding: 130px 0; }

.page-noise {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background: radial-gradient(circle, var(--accent), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(8, 11, 16, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
.brand-name { font-size: 20px; letter-spacing: -0.6px; }
.brand-mark { width: 26px; height: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; transform: skew(-8deg); }
.brand-mark span { background: var(--accent); border-radius: 2px; }
.brand-mark span:nth-child(1) { height: 58%; align-self: end; }
.brand-mark span:nth-child(2) { height: 100%; }
.brand-mark span:nth-child(3) { height: 76%; align-self: start; }
.desktop-nav { display: flex; gap: 34px; margin-left: auto; margin-right: 34px; }
.desktop-nav a, .footer-links a { color: #aeb7b4; font-size: 14px; transition: color 0.2s; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--accent); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 50%; padding: 0; position: relative; color: white; }
.menu-button span { position: absolute; width: 17px; height: 1px; background: currentColor; left: 13px; transition: transform .25s, top .25s; }
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 24px; }
.menu-button.active span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button.active span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 56px; padding: 0 24px; border-radius: 12px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 10px; font-size: 13px; }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(129,246,207,.45); background: rgba(129,246,207,.06); }
.button-primary { color: var(--dark); background: var(--accent); box-shadow: 0 16px 50px rgba(46,219,167,.18); }
.button-primary:hover { background: #a2ffe1; }
.button-light { background: white; color: #07110d; min-width: 240px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-size: 14px; color: #c7cfcc; font-weight: 600; }
.text-link span { color: var(--accent); }
.text-link.light { color: white; }

.hero { min-height: 100vh; padding-top: 180px; padding-bottom: 70px; position: relative; overflow: hidden; }
.hero-grid, .contact-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 90%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.orb-one { width: 480px; height: 480px; top: -180px; right: -70px; background: radial-gradient(circle, rgba(129,246,207,.15), transparent 68%); }
.orb-two { width: 300px; height: 300px; bottom: 5%; left: 22%; background: radial-gradient(circle, rgba(81,112,255,.09), transparent 70%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #aeb8b4; font-size: 11px; letter-spacing: 1.8px; font-weight: 700; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px var(--accent); }
h1 { margin: 24px 0 28px; font-size: clamp(48px, 5.4vw, 78px); letter-spacing: -4px; line-height: 1.08; }
h1 span { color: var(--accent); }
.hero-description { max-width: 580px; color: #9da7a4; font-size: 17px; line-height: 1.85; word-break: keep-all; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.trust-row { display: flex; align-items: center; gap: 18px; margin-top: 64px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--dark); font-size: 11px; font-weight: 800; background: linear-gradient(135deg, #c5fff0, #67deb8); border: 2px solid var(--bg); margin-left: -8px; }
.avatar-stack span:first-child { margin-left: 0; }
.trust-row p { margin: 0; color: #7f8986; font-size: 12px; line-height: 1.5; }
.trust-row strong { color: #d9dfdd; font-weight: 600; }

.hero-visual { position: relative; padding: 35px 0 45px; }
.visual-shell { position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: linear-gradient(145deg, rgba(22,29,39,.94), rgba(10,14,20,.96)); box-shadow: 0 40px 120px rgba(0,0,0,.38); overflow: hidden; transform: perspective(1400px) rotateY(-5deg) rotateX(2deg); }
.visual-shell::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.06), transparent 32%); pointer-events: none; }
.visual-topbar { height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 22px; border-bottom: 1px solid var(--line); color: #7d8785; font-size: 10px; letter-spacing: 1.5px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #303840; }
.live-badge { justify-self: end; color: #b8c0bd; display: flex; gap: 7px; align-items: center; }
.live-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 1.7s infinite; }
.visual-content { padding: 24px; }
.metric-card { border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.025); }
.metric-main { position: relative; padding: 22px 22px 0; overflow: hidden; }
.metric-heading { display: flex; justify-content: space-between; color: #6f7977; font-size: 9px; letter-spacing: 1.2px; }
.metric-main strong { display: inline-block; margin-top: 17px; font-size: 36px; letter-spacing: -1.7px; }
.metric-main .positive { margin-left: 10px; color: var(--accent); font-size: 11px; }
.chart { height: 155px; margin: 15px -22px 0; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-line { fill: none; stroke: var(--accent); stroke-width: 2.2; filter: drop-shadow(0 0 8px rgba(129,246,207,.35)); }
.chart-fill { fill: url(#chartFill); }
.visual-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.small-card { padding: 18px; }
.small-card > span { color: #707a77; font-size: 9px; letter-spacing: 1px; }
.small-card strong { display: block; margin: 12px 0 15px; font-size: 22px; }
.small-card strong em { color: #717c78; font-size: 10px; font-style: normal; }
.progress { height: 4px; background: #26302d; border-radius: 9px; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--accent); border-radius: inherit; }
.score-dots { display: flex; gap: 4px; }
.score-dots i { flex: 1; height: 4px; border-radius: 4px; background: var(--accent); }
.score-dots i:nth-last-child(-n+2) { background: #26302d; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(15,20,28,.9); backdrop-filter: blur(16px); box-shadow: 0 20px 45px rgba(0,0,0,.3); }
.floating-card-one { left: -32px; bottom: 70px; }
.floating-card-two { right: -24px; top: 76px; }
.floating-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: var(--accent); background: rgba(129,246,207,.1); }
.floating-card small { display: block; color: #66716e; font-size: 8px; letter-spacing: 1px; }
.floating-card strong { display: block; margin-top: 3px; font-size: 12px; }
.stats-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 110px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-strip div { padding: 25px 24px; border-right: 1px solid var(--line); }
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong { display: block; font-size: 13px; }
.stats-strip span { display: block; color: #707a77; font-size: 11px; margin-top: 6px; }

.services { background: #f1f4f1; color: #0a100e; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 65px; }
.section-heading.compact { margin-bottom: 55px; }
.section-index { display: block; color: #60706b; font-size: 10px; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 22px; }
.section-heading h2, .approach h2, .faq-heading h2, .contact-panel h2 { margin: 0; font-size: clamp(38px, 4vw, 57px); line-height: 1.18; letter-spacing: -2.7px; }
.section-heading > p { color: #64706c; line-height: 1.85; font-size: 14px; word-break: keep-all; margin: 0 0 6px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; padding: 35px 31px; min-height: 480px; border: 1px solid #dfe5e1; background: #f8faf8; border-radius: 20px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(20,45,35,.08); }
.service-card.featured { color: white; background: #0c1310; border-color: #0c1310; }
.featured-label { position: absolute; right: 0; top: 0; color: #07110d; background: var(--accent); padding: 9px 14px; border-bottom-left-radius: 12px; font-size: 8px; letter-spacing: 1.2px; font-weight: 800; }
.card-number { position: absolute; top: 30px; right: 30px; color: #a7b2ae; font-size: 10px; }
.featured .card-number { right: auto; left: 31px; top: 29px; color: #65706d; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-top: 75px; border-radius: 18px; background: #e7ece9; }
.featured .service-icon { background: rgba(129,246,207,.1); }
.service-icon svg { width: 31px; stroke: #15211d; fill: none; stroke-width: 1.5; }
.featured .service-icon svg { stroke: var(--accent); }
.service-card h3 { margin: 29px 0 14px; font-size: 20px; letter-spacing: -0.5px; }
.service-card p { min-height: 78px; color: #68736f; font-size: 13px; line-height: 1.8; word-break: keep-all; }
.featured p { color: #8c9894; }
.service-card ul { list-style: none; padding: 0; margin: 30px 0 0; border-top: 1px solid #e1e6e3; }
.featured ul { border-color: rgba(255,255,255,.08); }
.service-card li { position: relative; padding: 12px 0 0 16px; color: #3f4b47; font-size: 12px; }
.featured li { color: #b7c0bd; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 5px; height: 5px; background: var(--accent-2); border-radius: 50%; }

.approach { position: relative; background: #0b1017; }
.approach::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 16% 10%, rgba(129,246,207,.07), transparent 25%); }
.approach-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.approach-copy { position: sticky; top: 150px; align-self: start; }
.approach h2 { margin-bottom: 26px; }
.approach-copy > p { color: #89938f; font-size: 14px; line-height: 1.9; margin: 0 0 32px; word-break: keep-all; }
.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 65px 1fr; gap: 24px; padding: 36px 6px; border-bottom: 1px solid var(--line); }
.process-item > span { color: var(--accent); font-size: 11px; }
.process-item h3 { margin: 0 0 12px; font-size: 26px; letter-spacing: -1px; }
.process-item p { margin: 0; color: #7f8986; font-size: 13px; line-height: 1.7; }

.cases { background: #e7ebe8; color: #09100d; }
.case-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.case-card { border-radius: 22px; overflow: hidden; background: #f5f7f5; border: 1px solid #d7ddda; }
.case-large { grid-row: span 2; }
.case-art { min-height: 280px; position: relative; display: grid; place-items: center; overflow: hidden; background: #101711; }
.case-large .case-art { min-height: 520px; }
.case-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 34px 34px; }
.case-art > span { position: relative; z-index: 3; color: white; font-size: clamp(30px, 4vw, 58px); font-weight: 800; line-height: .95; text-align: center; letter-spacing: -2px; mix-blend-mode: difference; }
.art-one { background: radial-gradient(circle at center, #1b503f, #0c1310 65%); }
.pixel-cube { position: absolute; width: 125px; height: 125px; border: 1px solid rgba(129,246,207,.52); transform: rotate(30deg) skew(-10deg); box-shadow: inset 0 0 60px rgba(129,246,207,.06); }
.cube-one { left: 14%; top: 14%; }
.cube-two { right: 11%; bottom: 12%; width: 85px; height: 85px; }
.pixel-ring { position: absolute; width: 330px; height: 330px; border: 1px solid rgba(129,246,207,.18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(129,246,207,.025), 0 0 0 100px rgba(129,246,207,.018); }
.art-two { background: radial-gradient(circle, #2c335b, #101219 70%); }
.orbit { position: absolute; width: 210px; height: 210px; border-radius: 50%; border: 1px solid rgba(147,161,255,.28); animation: rotate 14s linear infinite; }
.orbit::before, .orbit::after { content: ""; position: absolute; inset: 34px; border-radius: 50%; border: 1px solid rgba(147,161,255,.18); }
.orbit::after { inset: 70px; background: #8e9aff; box-shadow: 0 0 45px rgba(142,154,255,.4); border: 0; }
.orbit i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #b6beff; }
.orbit i:nth-child(1) { left: -6px; top: 98px; }
.orbit i:nth-child(2) { right: 12px; top: 24px; }
.orbit i:nth-child(3) { left: 74px; bottom: -5px; }
.art-three { background: radial-gradient(circle at 70% 35%, #15473a, #0d1512 65%); }
.growth-bars { position: absolute; display: flex; align-items: end; gap: 10px; height: 145px; transform: skewY(-8deg); }
.growth-bars i { display: block; width: 24px; background: linear-gradient(to top, #2edba7, #a5ffe2); box-shadow: 0 0 22px rgba(46,219,167,.18); }
.growth-bars i:nth-child(1) { height: 28%; } .growth-bars i:nth-child(2) { height: 43%; } .growth-bars i:nth-child(3) { height: 61%; } .growth-bars i:nth-child(4) { height: 76%; } .growth-bars i:nth-child(5) { height: 100%; }
.case-copy { padding: 25px 27px 28px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row span { padding: 6px 9px; border-radius: 20px; color: #53605b; background: #e5eae7; font-size: 9px; }
.case-copy h3 { margin: 16px 0 8px; font-size: 19px; }
.case-copy p { margin: 0; color: #64706c; font-size: 12px; line-height: 1.75; }

.faq { background: #f1f4f1; color: #09100d; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.accordion { border-top: 1px solid #cfd6d2; }
.faq-item { border-bottom: 1px solid #cfd6d2; }
.faq-item button { width: 100%; display: grid; grid-template-columns: 1fr 24px; gap: 30px; align-items: center; padding: 28px 0; border: 0; color: #111815; background: transparent; text-align: left; font-weight: 600; cursor: pointer; }
.faq-item button i { position: relative; width: 20px; height: 20px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; background: #27322e; left: 3px; right: 3px; top: 9px; height: 1px; transition: transform .25s; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.active button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: #66716d; font-size: 13px; line-height: 1.8; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer p { padding: 0 55px 27px 0; }

.contact { background: #f1f4f1; padding-top: 20px; }
.contact-panel { position: relative; overflow: hidden; min-height: 440px; padding: 70px; border-radius: 28px; background: var(--accent); color: #07110d; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.contact-grid { opacity: .15; mask-image: none; }
.contact-panel > * { position: relative; z-index: 2; }
.contact-panel .section-index { color: #1c4f3f; }
.contact-panel h2 span { color: rgba(7,17,13,.53); }
.contact-panel p { max-width: 590px; color: #285f4e; font-size: 14px; line-height: 1.75; margin: 24px 0 0; }

.site-footer { background: #080b10; padding: 65px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 40px; align-items: center; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-top > p { color: #64706d; font-size: 11px; text-align: center; }
.footer-links { display: flex; justify-content: end; gap: 24px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: #59625f; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .section-pad { padding: 100px 0; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 720px; width: 100%; margin: 0 auto; }
  .visual-shell { transform: none; }
  .stats-strip { margin-top: 55px; }
  .section-heading, .approach-layout, .faq-layout { gap: 65px; }
  .service-card { padding: 28px 24px; }
  .case-art { min-height: 240px; }
  .case-large .case-art { min-height: 460px; }
  .contact-panel { padding: 55px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: block; }
  .mobile-menu { display: block; position: fixed; inset: 82px 0 auto; padding: 18px 16px 25px; background: rgba(8,11,16,.97); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s ease; }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { padding: 17px 10px; border-bottom: 1px solid var(--line); color: #c6cecb; }
  .hero { padding-top: 140px; }
  h1 { letter-spacing: -3px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip div:nth-child(2) { border-right: 0; }
  .stats-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .approach-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card p { min-height: 0; }
  .approach-copy { position: static; }
  .case-grid { grid-template-columns: 1fr; }
  .case-large { grid-row: auto; }
  .case-large .case-art { min-height: 330px; }
  .contact-panel { min-height: 500px; flex-direction: column; align-items: flex-start; justify-content: space-between; }
  .footer-top { grid-template-columns: 1fr; text-align: left; }
  .footer-top > p { text-align: left; }
  .footer-links { justify-content: start; }
}

@media (max-width: 560px) {
  .section-pad { padding: 78px 0; }
  .nav-wrap { height: 70px; }
  .mobile-menu { inset: 70px 0 auto; }
  .hero { padding-top: 120px; padding-bottom: 45px; }
  h1 { font-size: 47px; letter-spacing: -2.8px; }
  .hero-description { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-row { margin-top: 44px; }
  .hero-visual { padding-top: 20px; }
  .visual-content { padding: 14px; }
  .visual-topbar { padding: 0 14px; grid-template-columns: 1fr auto; }
  .visual-topbar > span:nth-child(2) { display: none; }
  .metric-main strong { font-size: 28px; }
  .visual-bottom-grid { grid-template-columns: 1fr; }
  .floating-card { display: none; }
  .stats-strip div { padding: 20px 14px; }
  .section-heading h2, .approach h2, .faq-heading h2, .contact-panel h2 { font-size: 38px; letter-spacing: -2px; }
  .section-heading { margin-bottom: 42px; }
  .process-item { grid-template-columns: 42px 1fr; gap: 14px; }
  .case-art, .case-large .case-art { min-height: 280px; }
  .contact-panel { padding: 38px 26px; min-height: 470px; }
  .button-light { width: 100%; min-width: 0; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cursor-glow { display: none; }
}
