:root {
  --bg: #f5f5f7;
  --paper: #ffffff;
  --ink: #050505;
  --text: #1d1d1f;
  --muted: #707075;
  --soft: #a1a1a6;
  --blue: #007aff;
  --violet: #7c3aed;
  --green: #34c759;
  --line: rgba(0, 0, 0, 0.08);
  --shadow-xs: 0 12px 36px rgba(0, 0, 0, 0.045);
  --shadow-sm: 0 18px 60px rgba(0, 0, 0, 0.065);
  --shadow-md: 0 32px 110px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 54px 170px rgba(0, 0, 0, 0.16);
  --shadow-dark: 0 44px 130px rgba(0, 0, 0, 0.26);
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 6%, rgba(219, 234, 254, 0.78), transparent 28%),
    radial-gradient(circle at 94% 8%, rgba(237, 233, 254, 0.82), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 42%, #ffffff 100%);
  letter-spacing: -0.014em;
  overflow-x: hidden;
}

::selection {
  background: var(--ink);
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
iframe,
video {
  display: block;
  max-width: 100%;
}

main,
section {
  width: 100%;
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -20;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 0.42px, transparent 0.42px);
  background-size: 4px 4px;
  mask-image: linear-gradient(to bottom, black 14%, transparent 92%);
}

.ambient {
  position: fixed;
  z-index: -19;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.78;
}

.ambient-one {
  width: 480px;
  height: 480px;
  top: 90px;
  left: -170px;
  background: rgba(0, 122, 255, 0.12);
  animation: ambientOne 16s var(--ease) infinite;
}

.ambient-two {
  width: 520px;
  height: 520px;
  top: 250px;
  right: -190px;
  background: rgba(124, 58, 237, 0.105);
  animation: ambientTwo 19s var(--ease) infinite;
}

.ambient-three {
  width: 540px;
  height: 540px;
  bottom: 12%;
  left: 40%;
  background: rgba(255, 255, 255, 0.72);
  animation: ambientThree 22s var(--ease) infinite;
}

/* NAV */

.menu-toggle {
  display: none;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(94%, var(--max));
  height: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.brand {
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,0.18), transparent 34%), var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 850;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22), 0 0 0 5px rgba(0, 0, 0, 0.055);
}

.brand div {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 620;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 580;
  transition: color 0.25s var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: var(--ink);
  transition: width 0.25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  min-width: 190px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.nav-soft,
.nav-dark {
  height: 36px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 680;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-soft {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.nav-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.nav-soft:hover,
.nav-dark:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 86px 18px auto 18px;
  z-index: 990;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(30px) saturate(180%);
  box-shadow: var(--shadow-md);
}

.mobile-menu a {
  display: block;
  padding: 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: #f5f5f7;
}

/* BUTTONS */

.btn {
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.btn.light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.btn.white {
  color: var(--ink);
  background: white;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.btn.glass {
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

/* HERO */

.hero {
  position: relative;
  width: min(100%, 1220px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 154px 24px 88px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 68px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.55));
  font-size: 11px;
  font-weight: 690;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-xs);
}

.eyebrow i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(52, 199, 89, 0.12);
}

.hero h1 {
  max-width: 540px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
  font-weight: 730;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-points {
  max-width: 580px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.hero-points article {
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.48));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hero-points article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.hero-points span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 820;
}

.hero-points strong {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 760;
}

.hero-points p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.58;
}

/* HERO EDITOR WITH REAL YOUTUBE VIDEO */

.hero-visual {
  min-height: 660px;
  display: grid;
  place-items: center;
  perspective: 1800px;
  isolation: isolate;
}

.cinema-editor {
  position: relative;
  width: min(100%, 710px);
  transform-style: preserve-3d;
  animation: editorFloat 7s var(--ease) infinite;
}

.editor-aura {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.74;
  z-index: -3;
}

.aura-one {
  width: 280px;
  height: 280px;
  left: -70px;
  top: 120px;
  background: rgba(0, 122, 255, 0.22);
  animation: auraMoveOne 8s ease-in-out infinite;
}

.aura-two {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: 90px;
  background: rgba(124, 58, 237, 0.18);
  animation: auraMoveTwo 9s ease-in-out infinite;
}

.aura-three {
  width: 360px;
  height: 360px;
  left: 28%;
  top: 20%;
  background: rgba(255, 255, 255, 0.65);
  animation: auraMoveThree 10s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
}

.ring-one {
  width: 560px;
  height: 560px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(0,0,0,0.055);
  transform: translate(-50%, -50%);
  animation: ringSpinOne 20s linear infinite;
}

.ring-two {
  width: 430px;
  height: 430px;
  left: 4%;
  top: 4%;
  border: 1px solid rgba(0,122,255,0.13);
  animation: ringSpinTwo 24s linear infinite;
}

.ring-three {
  width: 260px;
  height: 260px;
  right: 3%;
  bottom: 5%;
  border: 1px solid rgba(124,58,237,0.16);
  animation: ringSpinThree 16s linear infinite;
}

.editor-shell {
  position: relative;
  z-index: 3;
  padding: 12px;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.075);
  background: linear-gradient(145deg, rgba(255,255,255,0.97), rgba(255,255,255,0.56));
  backdrop-filter: blur(42px) saturate(190%);
  -webkit-backdrop-filter: blur(42px) saturate(190%);
  box-shadow: 0 70px 210px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.96);
}

.editor-shell::after {
  content: "";
  position: absolute;
  inset: -50%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,0.44) 48%, transparent 56%, transparent 100%);
  animation: shellSweep 7.5s ease-in-out infinite;
}

.editor-top,
.editor-body,
.timeline-panel {
  position: relative;
  z-index: 3;
}

.editor-top {
  height: 44px;
  padding: 0 10px 0 12px;
  display: grid;
  grid-template-columns: 82px 1fr 44px;
  align-items: center;
}

.editor-dots {
  display: flex;
  gap: 6px;
}

.editor-dots i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: rgba(0,0,0,0.16);
  animation: dotBreathe 2.2s ease-in-out infinite;
}

.editor-dots i:nth-child(2) {
  animation-delay: .18s;
}

.editor-dots i:nth-child(3) {
  animation-delay: .36s;
}

.editor-title {
  text-align: center;
}

.editor-title span {
  display: block;
  color: #a1a1a6;
  font-size: 9px;
  font-weight: 760;
}

.editor-title strong {
  display: block;
  margin-top: 2px;
  color: #707075;
  font-size: 10px;
  font-weight: 720;
}

.editor-quality {
  justify-self: end;
  width: 34px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #050505;
  font-size: 9px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  animation: qualityPulse 2.8s ease-in-out infinite;
}

.editor-body {
  display: grid;
  grid-template-columns: 1fr 148px;
  gap: 10px;
}

.preview {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  border-radius: 35px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09), inset 0 -110px 160px rgba(0,0,0,0.58);
}

.preview iframe,
.video-frame iframe,
.case-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
}

.youtube-preview iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.32), transparent 34%, rgba(0,0,0,0.58)),
    radial-gradient(circle at 50% 45%, transparent 0%, transparent 52%, rgba(0,0,0,.18) 100%);
}

.preview-noise,
.preview-scan,
.corner-frame,
.preview-meta,
.timecode,
.caption,
.watch-link {
  pointer-events: none;
}

.preview-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.28) .5px, transparent .5px);
  background-size: 3px 3px;
  animation: noiseShift 1.2s steps(3) infinite;
}

.preview-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .08;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.1) 0, rgba(255,255,255,.1) 1px, transparent 1px, transparent 6px);
  animation: scanMove 7s linear infinite;
}

.corner-frame {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-color: rgba(255,255,255,.22);
  animation: cornerPulse 2.4s ease-in-out infinite;
}

.top-left {
  top: 18px;
  left: 18px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.top-right {
  top: 18px;
  right: 18px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.bottom-left {
  bottom: 18px;
  left: 18px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.bottom-right {
  bottom: 18px;
  right: 18px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.preview-meta {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 760;
}

.timecode {
  position: absolute;
  z-index: 5;
  top: 52px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 760;
}

.timecode span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 14px rgba(255,59,48,.7);
  animation: recBlink 1s infinite;
}

.caption {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  bottom: 54px;
  color: white;
}

.caption span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  font-weight: 760;
}

.caption h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: .98;
  font-weight: 760;
  letter-spacing: -.062em;
}

.watch-link {
  position: absolute;
  z-index: 5;
  left: 28px;
  bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 760;
  pointer-events: auto;
  backdrop-filter: blur(14px);
}

.watch-link:hover {
  background: rgba(255,255,255,.18);
}

.side-controls {
  display: grid;
  gap: 10px;
}

.control {
  min-height: 118px;
  padding: 14px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.055);
  background: rgba(245,245,247,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
}

.control-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.control-head span,
.status > span {
  color: #a1a1a6;
  font-size: 10px;
  font-weight: 760;
}

.control-head small {
  color: #707075;
  font-size: 9px;
  font-weight: 720;
}

.color-lab {
  position: relative;
  height: 66px;
  margin-top: 14px;
}

.color-lab i,
.color-lab b,
.color-lab em {
  position: absolute;
  border-radius: 999px;
}

.color-lab i:nth-child(1) {
  width: 52px;
  height: 52px;
  left: 2px;
  top: 2px;
  background: linear-gradient(145deg, #111, #777);
  animation: orbOne 4.5s ease-in-out infinite;
}

.color-lab i:nth-child(2) {
  width: 42px;
  height: 42px;
  right: 12px;
  top: 10px;
  background: linear-gradient(145deg, #d7d7dc, #9b9ba1);
  animation: orbTwo 5s ease-in-out infinite;
}

.color-lab i:nth-child(3) {
  width: 24px;
  height: 24px;
  left: 54px;
  bottom: 4px;
  background: linear-gradient(145deg, #c7d2fe, #dbeafe);
  animation: orbThree 4.8s ease-in-out infinite;
}

.color-lab b {
  inset: 4px 8px;
  border: 1px solid rgba(0,0,0,.07);
  opacity: .72;
  animation: spin 8s linear infinite;
}

.color-lab em {
  width: 6px;
  height: 6px;
  right: 4px;
  bottom: 8px;
  background: #34c759;
  box-shadow: 0 0 14px rgba(52,199,89,.45);
  animation: greenDot 1.7s ease-in-out infinite;
}

.eq {
  height: 70px;
  margin-top: 12px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.eq i {
  flex: 1;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(to top, #111, #8b8b92);
  transform-origin: bottom;
  animation: eqMove 1.05s ease-in-out infinite alternate;
}

.eq i:nth-child(2) { animation-delay: .1s; }
.eq i:nth-child(3) { animation-delay: .2s; }
.eq i:nth-child(4) { animation-delay: .3s; }
.eq i:nth-child(5) { animation-delay: .4s; }
.eq i:nth-child(6) { animation-delay: .5s; }
.eq i:nth-child(7) { animation-delay: .6s; }

.status {
  min-height: 94px;
}

.status strong {
  display: block;
  margin-top: 18px;
  color: #111;
  font-size: 13px;
  font-weight: 760;
}

.status-bar {
  height: 8px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0,0,0,.07);
}

.status-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111, #777, #d7d7dc, #fff);
  animation: statusLoad 3.1s ease-in-out infinite;
}

.timeline-panel {
  margin-top: 10px;
  padding: 18px;
  border-radius: 31px;
  border: 1px solid rgba(0,0,0,.055);
  background: rgba(245,245,247,.84);
}

.timeline-head {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}

.timeline-head span {
  color: #707075;
  font-size: 10px;
  font-weight: 760;
}

.timeline-stage {
  position: relative;
  display: grid;
  gap: 7px;
}

.timeline-playhead {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 8%;
  z-index: 8;
  width: 1px;
  background: rgba(0,0,0,.34);
  animation: playhead 5.2s linear infinite;
}

.timeline-playhead::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #050505;
}

.timeline-row {
  height: 12px;
  display: flex;
  gap: 6px;
}

.clip {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
}

.clip::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  animation: clipFlash 3.2s ease-in-out infinite;
}

.black {
  background: linear-gradient(90deg, #101010, #6f6f74);
}

.frost {
  background: linear-gradient(90deg, #d7d7dc, #a1a1a6);
}

.blue {
  background: linear-gradient(90deg, #c7d2fe, #dbeafe);
}

.v1 { width: 30%; }
.v2 { width: 18%; }
.v3 { width: 24%; }
.v4 { width: 42%; margin-left: 10%; }
.v5 { width: 22%; }
.v6 { width: 24%; }
.v7 { width: 34%; }
.v8 { width: 18%; }

.wave {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wave i {
  flex: 1;
  height: 42%;
  border-radius: 999px;
  background: rgba(0,0,0,.16);
  transform-origin: center;
  animation: waveMove 1s ease-in-out infinite alternate;
}

.wave i:nth-child(2),
.wave i:nth-child(5),
.wave i:nth-child(8),
.wave i:nth-child(11),
.wave i:nth-child(14) {
  height: 86%;
}

.wave i:nth-child(3) { animation-delay: .08s; }
.wave i:nth-child(4) { animation-delay: .16s; }
.wave i:nth-child(5) { animation-delay: .24s; }
.wave i:nth-child(6) { animation-delay: .32s; }
.wave i:nth-child(7) { animation-delay: .4s; }
.wave i:nth-child(8) { animation-delay: .48s; }
.wave i:nth-child(9) { animation-delay: .56s; }
.wave i:nth-child(10) { animation-delay: .64s; }
.wave i:nth-child(11) { animation-delay: .72s; }
.wave i:nth-child(12) { animation-delay: .8s; }
.wave i:nth-child(13) { animation-delay: .88s; }
.wave i:nth-child(14) { animation-delay: .96s; }
.wave i:nth-child(15) { animation-delay: 1.04s; }
.wave i:nth-child(16) { animation-delay: 1.12s; }

.floating-chip {
  position: absolute;
  z-index: 9;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  backdrop-filter: blur(28px);
  box-shadow: 0 30px 92px rgba(0,0,0,.14);
  animation: chipFloat 5s ease-in-out infinite;
}

.floating-chip span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}

.floating-chip p {
  color: #1d1d1f;
  font-size: 11px;
  font-weight: 760;
}

.chip-story {
  top: 54px;
  left: -8px;
}

.chip-sound {
  right: -10px;
  top: 220px;
  animation-delay: .8s;
}

.chip-flow {
  left: 22px;
  bottom: 92px;
  animation-delay: 1.4s;
}

/* STRIP */

.strip {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.52));
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow-sm);
}

.strip div {
  width: max-content;
  padding: 15px 24px;
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

.strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

/* SECTION HEAD */

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto 26px;
}

.section-head.center {
  text-align: center;
}

.section-head > span,
.case-copy > span,
.social-shell > div > span,
.contact-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 560px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.08;
  font-weight: 680;
  letter-spacing: -0.05em;
}

.section-head.center h2 {
  margin: 0 auto;
}

/* WORK */

.work-section {
  padding: 78px 24px 94px;
  background: white;
}

.portfolio-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portfolio-video-card {
  min-width: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 32px;
  background: #050505;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.video-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-overlay,
.case-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), transparent 38%, rgba(0,0,0,0.56));
}

.portfolio-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.portfolio-top span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.82);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.portfolio-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.portfolio-bottom small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 650;
}

.portfolio-bottom h3 {
  max-width: 310px;
  color: white;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: -0.055em;
}

.video-open-link {
  width: fit-content;
  margin: 12px auto 0;
  padding: 8px 12px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  backdrop-filter: blur(18px);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.video-open-link:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.portfolio-actions {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* CASE */

.case-section {
  padding: 28px 24px 92px;
  background: white;
}

.case-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: #f5f5f7;
  box-shadow: var(--shadow-lg);
}

.case-video {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background: #050505;
}

.case-video iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.case-top {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
}

.case-top span {
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  font-weight: 780;
}

.case-title {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.case-title span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 780;
}

.case-title h2 {
  max-width: 460px;
  color: white;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 0.99;
  font-weight: 720;
  letter-spacing: -0.06em;
}

.case-copy {
  align-self: center;
  padding: 34px 30px;
}

.case-copy h2 {
  max-width: 430px;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.052em;
}

.case-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.case-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case-meta article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.case-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
}

.case-meta strong {
  font-size: 12px;
  font-weight: 780;
}

.case-button {
  margin-top: 24px;
}

/* CLIENTS */

.clients-section {
  padding: 72px 24px 78px;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 234, 254, 0.42), transparent 38%),
    var(--bg);
}

.clients-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.client-card {
  min-height: 86px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
  backdrop-filter: blur(24px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,1), rgba(255,255,255,0.5));
  box-shadow: 0 10px 22px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.06);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.client-card h3 {
  color: #111;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-card p {
  margin-top: 4px;
  color: #7b7b82;
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* STUDIO */

.studio-section {
  padding: 96px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 234, 254, 0.42), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.studio-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.studio-header {
  margin-bottom: 28px;
}

.studio-header span {
  display: block;
  margin-bottom: 10px;
  color: #8a8a90;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-header h2 {
  max-width: 540px;
  color: #111;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
  font-weight: 690;
  letter-spacing: -0.055em;
}

.studio-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.studio-main-card,
.studio-row-card,
.studio-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.075);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.58));
  backdrop-filter: blur(28px);
  box-shadow: 0 20px 65px rgba(0,0,0,0.065), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.studio-main-card {
  min-height: 390px;
  padding: 28px;
  border-radius: 38px;
}

.studio-main-card:hover,
.studio-row-card:hover,
.studio-side-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,0,0,0.13);
  box-shadow: 0 32px 90px rgba(0,0,0,0.1);
}

.studio-card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  animation: studioGridMove 18s linear infinite;
}

.studio-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  filter: blur(34px);
}

.studio-index {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.studio-main-copy {
  position: relative;
  z-index: 2;
  margin-top: 72px;
}

.studio-main-copy span {
  color: #a1a1a6;
  font-size: 10px;
  font-weight: 780;
}

.studio-main-copy h3,
.studio-side-card h3 {
  margin-top: 10px;
  color: #111;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.studio-main-copy p,
.studio-side-card p {
  max-width: 420px;
  margin-top: 13px;
  color: #707075;
  font-size: 13px;
  line-height: 1.68;
}

.studio-mini-console {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 15px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,0.07);
  background: rgba(245,245,247,0.78);
}

.studio-mini-console > div:first-child {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.studio-mini-console span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
}

.studio-mini-console > div:last-child {
  display: grid;
  gap: 7px;
}

.studio-mini-console i {
  height: 8px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #111, #a1a1a6);
  animation: studioTimelineGlow 3s ease-in-out infinite;
}

.studio-mini-console i:nth-child(2) {
  width: 72%;
  margin-left: 16%;
  background: linear-gradient(90deg, #d7d7dc, #a1a1a6);
  animation-delay: 0.2s;
}

.studio-mini-console i:nth-child(3) {
  width: 58%;
  background: linear-gradient(90deg, #c7d2fe, #dbeafe);
  animation-delay: 0.4s;
}

.studio-mini-console i:nth-child(4) {
  width: 44%;
  margin-left: 28%;
  animation-delay: 0.6s;
}

.studio-middle-stack {
  display: grid;
  gap: 14px;
}

.studio-row-card {
  min-height: 120px;
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  gap: 12px;
  align-items: center;
  border-radius: 30px;
}

.studio-row-card > span,
.studio-side-card > span {
  position: relative;
  z-index: 2;
  color: #a1a1a6;
  font-size: 10px;
  font-weight: 850;
}

.studio-row-card h3 {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.studio-row-card p {
  margin-top: 6px;
  color: #707075;
  font-size: 12px;
  line-height: 1.5;
}

.studio-row-card > i {
  width: 8px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(to top, #111, #d7d7dc);
  opacity: 0.7;
  animation: studioSmallMeter 2.8s ease-in-out infinite;
}

.dark-row {
  color: white;
  border-color: rgba(255,255,255,0.12);
  background: radial-gradient(circle at 78% 0%, rgba(255,255,255,0.14), transparent 30%), linear-gradient(145deg, #070707, #19191d);
}

.dark-row h3 {
  color: white;
}

.dark-row p,
.dark-row > span {
  color: rgba(255,255,255,0.58);
}

.dark-row > i {
  background: linear-gradient(to top, rgba(255,255,255,0.2), white);
}

.studio-side-card {
  min-height: 390px;
  padding: 26px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,122,255,0.16), transparent 34%),
    radial-gradient(circle at 80% 100%, rgba(124,58,237,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.6));
}

.side-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  filter: blur(36px);
}

.studio-side-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 72px;
}

.studio-side-card p {
  position: relative;
  z-index: 2;
}

.studio-meter {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  align-items: end;
  height: 130px;
}

.studio-meter i {
  border-radius: 999px 999px 24px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  background:
    linear-gradient(to top, rgba(17,17,17,0.16), rgba(255,255,255,0.78)),
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.9), transparent 26%);
  animation: studioMeterRise 3.8s ease-in-out infinite;
}

.studio-meter i:nth-child(1) {
  height: 58%;
}

.studio-meter i:nth-child(2) {
  height: 92%;
  animation-delay: 0.3s;
}

.studio-meter i:nth-child(3) {
  height: 72%;
  animation-delay: 0.6s;
}

/* CALENDAR */

.calendar-section {
  padding: 92px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(237,233,254,0.75), transparent 34%), var(--bg);
}

.calendar-shell {
  width: min(100%, var(--max));
  margin: 36px auto 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.52));
  backdrop-filter: blur(28px);
  box-shadow: var(--shadow-lg);
}

.calendar-copy {
  align-self: center;
  padding: 36px 28px;
}

.calendar-copy h3 {
  max-width: 390px;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.055em;
}

.calendar-copy p {
  max-width: 420px;
  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.calendar-frame {
  overflow: hidden;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow-md);
}

.browser-bar {
  height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f5f5f7;
  border-bottom: 1px solid var(--line);
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
}

.calendar-frame iframe {
  width: 100%;
  height: 638px;
  border: 0;
  background: white;
}























/* CONTACT */

.contact-section {
  padding: 0 24px 92px;
  background: white;
}

.contact-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  border-radius: 44px;
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.15), transparent 32%),
    radial-gradient(circle at 16% 100%, rgba(0,122,255,0.18), transparent 34%),
    linear-gradient(145deg, #050505, #19191d);
  box-shadow: var(--shadow-dark);
}

.contact-copy {
  align-self: end;
  padding: 44px 34px;
}

.contact-copy > span {
  color: rgba(255,255,255,0.52);
}

.contact-copy h2 {
  max-width: 500px;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.06;
  font-weight: 720;
  letter-spacing: -0.056em;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.72;
}

.contact-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 19px;
  outline: none;
  color: white;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.34);
}

.contact-form select {
  color: rgba(255,255,255,0.82);
}

.contact-form button {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}

/* FOOTER */

.footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a {
  font-weight: 780;
}

/* ANIMATIONS */

@keyframes ambientOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(60px, 30px, 0) scale(1.08); }
}

@keyframes ambientTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-60px, 40px, 0) scale(1.06); }
}

@keyframes ambientThree {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -40px, 0) scale(1.08); }
}

@keyframes editorFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-18px) rotateX(1.2deg) rotateY(-1.5deg); }
}

@keyframes auraMoveOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -16px) scale(1.1); }
}

@keyframes auraMoveTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 18px) scale(1.08); }
}

@keyframes auraMoveThree {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, 22px) scale(1.05); }
}

@keyframes ringSpinOne {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringSpinTwo {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes ringSpinThree {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shellSweep {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  42% { opacity: .65; }
  62% { transform: translateX(25%); opacity: 0; }
}

@keyframes dotBreathe {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.22); }
}

@keyframes qualityPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(0,0,0,.18); }
  50% { box-shadow: 0 12px 28px rgba(0,0,0,.18), 0 0 26px rgba(0,0,0,.28); }
}

@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2px, 1px); }
  66% { transform: translate(2px, -1px); }
  100% { transform: translate(0, 0); }
}

@keyframes scanMove {
  from { transform: translateY(0); }
  to { transform: translateY(42px); }
}

@keyframes cornerPulse {
  0%, 100% { opacity: .35; transform: scale(.96); }
  50% { opacity: .85; transform: scale(1); }
}

@keyframes recBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: .25; }
}

@keyframes orbOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, 3px) scale(1.06); }
}

@keyframes orbTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8px, 5px) scale(1.07); }
}

@keyframes orbThree {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5px, -5px) scale(1.1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes greenDot {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes eqMove {
  from { transform: scaleY(.64); opacity: .66; }
  to { transform: scaleY(1.16); opacity: 1; }
}

@keyframes statusLoad {
  0%, 100% { width: 42%; }
  50% { width: 94%; }
}

@keyframes playhead {
  0% { left: 8%; }
  100% { left: 92%; }
}

@keyframes clipFlash {
  0%, 100% { transform: translateX(-110%); opacity: 0; }
  45% { opacity: 1; }
  70% { transform: translateX(110%); opacity: 0; }
}

@keyframes waveMove {
  from { transform: scaleY(.56); opacity: .55; }
  to { transform: scaleY(1.24); opacity: 1; }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes studioGridMove {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

@keyframes studioTimelineGlow {
  0%, 100% { opacity: 0.65; transform: scaleX(0.95); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes studioSmallMeter {
  0%, 100% { transform: scaleY(0.78); opacity: 0.65; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes studioMeterRise {
  0%, 100% { transform: scaleY(0.88); opacity: 0.78; }
  50% { transform: scaleY(1.05); opacity: 1; }
}

/* RESPONSIVE */

@media (min-width: 1440px) {
  :root {
    --max: 1320px;
  }

  .hero {
    width: min(100%, 1360px);
    gap: 82px;
  }

  .cinema-editor {
    width: min(100%, 730px);
  }

  .preview {
    min-height: 420px;
  }

  .calendar-frame {
    min-height: 740px;
  }

  .calendar-frame iframe {
    height: 698px;
  }
}

@media (max-width: 1280px) {
  :root {
    --max: 1120px;
  }

  .hero {
    width: min(100%, 1160px);
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
  }

  .cinema-editor {
    width: min(100%, 650px);
  }

  .preview {
    min-height: 360px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .studio-layout {
    grid-template-columns: 1fr 0.9fr;
  }

  .studio-side-card {
    grid-column: span 2;
    min-height: 300px;
  }

  .studio-meter {
    max-width: 320px;
    left: auto;
  }
}

@media (max-width: 1100px) {
  .brand,
  .nav-actions {
    min-width: auto;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 130px 24px 76px;
    gap: 54px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .cinema-editor {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-shell,
  .calendar-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .studio-layout {
    grid-template-columns: 1fr;
  }

  .studio-side-card {
    grid-column: auto;
  }

  .studio-meter {
    left: 26px;
    right: 26px;
    max-width: none;
  }

  .social-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .navbar {
    top: 14px;
    width: calc(100% - 28px);
    height: 54px;
    padding: 0 10px 0 12px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,0.62);
    cursor: pointer;
  }

  .menu-button i {
    width: 15px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 0.25s var(--ease);
  }

  .menu-button i + i {
    margin-top: -11px;
  }

  .menu-toggle:checked ~ .navbar .menu-button i:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle:checked ~ .navbar .menu-button i:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .menu-toggle:checked ~ .mobile-menu {
    display: block;
  }

  .mobile-menu {
    inset: 82px 14px auto 14px;
  }

  .hero {
    padding: 122px 18px 70px;
    gap: 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-points,
  .editor-body,
  .case-meta,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .editor-shell {
    border-radius: 36px;
  }

  .editor-top {
    grid-template-columns: 70px 1fr;
  }

  .editor-quality {
    display: none;
  }

  .preview {
    min-height: 320px;
    border-radius: 28px;
  }

  .side-controls {
    grid-template-columns: repeat(3, 1fr);
  }

  .control {
    min-height: 104px;
  }

  .floating-chip,
  .orbit-ring {
    display: none;
  }

  .strip {
    width: calc(100% - 36px);
    border-radius: 28px;
  }

  .work-section,
  .case-section,
  .clients-section,
  .studio-section,
  .calendar-section,
  .social-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .work-section,
  .studio-section,
  .calendar-section,
  .social-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .case-section,
  .contact-section {
    padding-bottom: 78px;
  }

  .section-head h2,
  .studio-header h2 {
    font-size: 26px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    border-radius: 28px;
  }

  .case-shell,
  .calendar-shell,
  .contact-shell {
    border-radius: 34px;
  }

  .case-video {
    min-height: 360px;
    border-radius: 28px;
  }

  .studio-main-card,
  .studio-side-card {
    min-height: 330px;
    border-radius: 30px;
  }

  .calendar-frame {
    min-height: 620px;
    border-radius: 30px;
  }

  .calendar-frame iframe {
    height: 578px;
  }

  .social-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .social-grid a {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .brand div {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    max-width: 420px;
    font-size: 31px;
  }

  .hero-buttons,
  .portfolio-actions,
  .contact-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.3;
  }

  .editor-shell {
    padding: 9px;
    border-radius: 32px;
  }

  .editor-title strong {
    display: none;
  }

  .preview {
    min-height: 280px;
    border-radius: 24px;
  }

  .preview-meta {
    top: 18px;
    left: 18px;
    right: 18px;
    font-size: 9px;
  }

  .timecode {
    display: none;
  }

  .caption {
    left: 20px;
    right: 20px;
    bottom: 44px;
  }

  .caption h2 {
    font-size: 30px;
  }

  .side-controls {
    grid-template-columns: 1fr;
  }

  .timeline-panel {
    padding: 15px;
    border-radius: 24px;
  }

  .timeline-head {
    flex-direction: column;
    gap: 8px;
  }

  .portfolio-bottom h3 {
    font-size: 24px;
  }

  .case-copy,
  .calendar-copy,
  .contact-copy {
    padding: 28px 18px;
  }

  .case-title h2,
  .case-copy h2,
  .contact-copy h2,
  .calendar-copy h3,
  .social-shell h2 {
    font-size: 25px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 76px;
    border-radius: 22px;
  }

  .avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .studio-header h2 {
    font-size: 25px;
  }

  .studio-main-card,
  .studio-side-card {
    min-height: 315px;
    padding: 22px;
    border-radius: 28px;
  }

  .studio-main-copy,
  .studio-side-card h3 {
    margin-top: 54px;
  }

  .studio-main-copy h3,
  .studio-side-card h3 {
    font-size: 20px;
  }

  .studio-mini-console {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .studio-meter {
    left: 22px;
    right: 22px;
    bottom: 22px;
    height: 105px;
  }

  .studio-row-card {
    grid-template-columns: 34px 1fr;
    min-height: auto;
    padding: 16px;
  }

  .studio-row-card > i {
    display: none;
  }

  .calendar-frame {
    min-height: 590px;
  }

  .calendar-frame iframe {
    height: 548px;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-grid a {
    height: 84px;
  }
}

@media (max-width: 460px) {
  .navbar {
    width: calc(100% - 22px);
    top: 11px;
  }

  .mobile-menu {
    inset: 76px 11px auto 11px;
  }

  .hero {
    padding: 108px 14px 62px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.045em;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-points article {
    border-radius: 22px;
    padding: 14px;
  }

  .editor-shell {
    border-radius: 28px;
  }

  .preview {
    min-height: 245px;
    border-radius: 22px;
  }

  .corner-frame {
    display: none;
  }

  .caption h2 {
    font-size: 26px;
  }

  .caption span {
    font-size: 10px;
  }

  .timeline-row {
    height: 10px;
  }

  .wave {
    height: 25px;
  }

  .strip {
    width: calc(100% - 28px);
  }

  .work-section,
  .case-section,
  .clients-section,
  .studio-section,
  .calendar-section,
  .social-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-head h2,
  .studio-header h2 {
    font-size: 23px;
  }

  .case-shell,
  .calendar-shell,
  .contact-shell {
    padding: 10px;
    border-radius: 28px;
  }

  .case-video {
    min-height: 310px;
    border-radius: 24px;
  }

  .case-top {
    flex-direction: column;
    gap: 8px;
  }

  .case-copy h2,
  .contact-copy h2,
  .calendar-copy h3,
  .social-shell h2 {
    font-size: 23px;
  }

  .case-copy > p,
  .calendar-copy p,
  .contact-copy p {
    font-size: 13px;
  }

  .client-card h3 {
    font-size: 12px;
  }

  .client-card p {
    font-size: 10px;
  }

  .studio-main-card,
  .studio-side-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .studio-main-copy h3,
  .studio-side-card h3 {
    font-size: 19px;
  }

  .studio-main-copy p,
  .studio-side-card p {
    font-size: 12px;
  }

  .studio-mini-console {
    padding: 12px;
    border-radius: 20px;
  }

  .calendar-frame {
    min-height: 560px;
    border-radius: 24px;
  }

  .calendar-frame iframe {
    height: 518px;
  }

  .browser-bar {
    height: 38px;
  }

  .social-shell {
    padding: 18px;
    border-radius: 26px;
  }

  .social-grid a {
    height: 78px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 16px;
    border-radius: 24px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-radius: 16px;
    padding: 13px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 26px;
  }

  .preview {
    min-height: 225px;
  }

  .caption h2 {
    font-size: 24px;
  }

  .portfolio-bottom h3,
  .case-title h2 {
    font-size: 22px;
  }

  .section-head h2,
  .studio-header h2,
  .case-copy h2,
  .contact-copy h2,
  .calendar-copy h3 {
    font-size: 21px;
  }

  .calendar-frame {
    min-height: 530px;
  }

  .calendar-frame iframe {
    height: 488px;
  }
}


/* =========================================================
   ULTRA SMALL APPLE-STYLE HERO TAGS
   No numbers. No long text. Clean premium motion.
========================================================= */

.premium-hero-tags {
  max-width: 430px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.premium-hero-tags article {
  position: relative;
  min-height: auto;
  padding: 9px 13px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.56));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.28s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.28s cubic-bezier(.2,.8,.2,1),
    border-color 0.28s cubic-bezier(.2,.8,.2,1),
    background 0.28s cubic-bezier(.2,.8,.2,1);
}

.premium-hero-tags article::before {
  content: "";
  position: absolute;
  inset: -80% -45%;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.9) 49%,
      transparent 62%
    );
  transform: translateX(-55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.premium-hero-tags article::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #111;
  transform: translateY(-50%);
  opacity: 0.8;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.045);
}

.premium-hero-tags article:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.68));
  box-shadow:
    0 18px 46px rgba(0,0,0,0.075),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.premium-hero-tags article:hover::before {
  opacity: 1;
  animation: premiumTagSweep 1.15s ease forwards;
}

.premium-hero-tags strong {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 0 11px;
  color: #111;
  font-size: 11px;
  line-height: 1;
  font-weight: 680;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

@keyframes premiumTagSweep {
  from {
    transform: translateX(-55%);
  }

  to {
    transform: translateX(55%);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .premium-hero-tags {
    max-width: 100%;
    margin-top: 28px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .premium-hero-tags {
    gap: 7px;
  }

  .premium-hero-tags article {
    padding: 8px 12px;
  }

  .premium-hero-tags strong {
    font-size: 10.5px;
  }
}



/* =========================================================
   PREMIUM ANIMATED CASE STUDY SIDE
   Video stays clean. Animation only on right-side content.
========================================================= */

.case-section-pro {
  padding: 28px 24px 96px;
  background: #ffffff;
}

.case-shell-pro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 14px;
  border: 1px solid rgba(0,0,0,0.075);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,245,247,0.88));
  box-shadow:
    0 44px 140px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

/* VIDEO: intentionally simple */
.clean-video {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background: #050505;
}

.clean-video iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  border: 0;
  background: #050505;
}

/* RIGHT SIDE */
.case-copy-pro {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(0,0,0,0.065);
  background:
    radial-gradient(circle at 84% 18%, rgba(219,234,254,0.9), transparent 28%),
    radial-gradient(circle at 14% 92%, rgba(236,253,245,0.82), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68));
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  box-shadow:
    0 20px 70px rgba(0,0,0,0.065),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

/* animated premium lines */
.case-line-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  animation: caseGridMove 18s linear infinite;
}

.case-copy-pro::before {
  content: "";
  position: absolute;
  inset: -60%;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.75) 49%,
      transparent 62%
    );
  transform: translateX(-35%);
  opacity: 0;
  animation: caseGlassSweep 6.4s ease-in-out infinite;
}

.case-copy-pro::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  filter: blur(34px);
  pointer-events: none;
  animation: caseSoftGlow 7s ease-in-out infinite;
}



.planet {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.planet-main {
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffffff, transparent 35%),
    linear-gradient(145deg, #111, #68686f);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.planet-one {
  width: 7px;
  height: 7px;
  top: -4px;
  left: 45%;
  background: #34c759;
  box-shadow: 0 0 14px rgba(52,199,89,0.42);
}

.planet-two {
  width: 6px;
  height: 6px;
  right: 5px;
  bottom: 18px;
  background: #007aff;
  box-shadow: 0 0 14px rgba(0,122,255,0.36);
}

.planet-three {
  width: 5px;
  height: 5px;
  left: 8px;
  bottom: 24px;
  background: #a1a1a6;
}

/* content */
.case-kicker {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.065);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  color: #77777d;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-kicker i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34c759;
  box-shadow: 0 0 0 5px rgba(52,199,89,0.12);
  animation: climatePulse 1.8s ease-in-out infinite;
}

.case-copy-pro h2 {
  position: relative;
  z-index: 3;
  max-width: 430px;
  color: #111;
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.055em;
}

.case-copy-pro p {
  position: relative;
  z-index: 3;
  max-width: 500px;
  margin-top: 18px;
  color: #6f6f75;
  font-size: 13.5px;
  line-height: 1.72;
}

.case-tags-pro {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags-pro span {
  position: relative;
  overflow: hidden;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.065);
  background: rgba(255,255,255,0.68);
  color: #343438;
  font-size: 10.5px;
  font-weight: 720;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.035),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.case-tags-pro span::after {
  content: "";
  position: absolute;
  inset: -70%;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.9) 49%,
      transparent 62%
    );
  transform: translateX(-55%);
  opacity: 0;
}

.case-tags-pro span:hover::after {
  opacity: 1;
  animation: caseTagShine 1.1s ease forwards;
}

.case-meta-pro {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.case-meta-pro article {
  position: relative;
  overflow: hidden;
  padding: 14px;
  min-height: 76px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.065);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  box-shadow:
    0 12px 30px rgba(0,0,0,0.035),
    inset 0 1px 0 rgba(255,255,255,0.92);
  transition:
    transform 0.28s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.28s cubic-bezier(.2,.8,.2,1),
    border-color 0.28s cubic-bezier(.2,.8,.2,1);
}

.case-meta-pro article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #34c759, #007aff);
  opacity: 0.55;
}

.case-meta-pro article:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.12);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.case-meta-pro span {
  display: block;
  color: #99999f;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-meta-pro strong {
  display: block;
  margin-top: 9px;
  color: #111;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.case-youtube-btn {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: 24px;
  height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  color: white;
  font-size: 11px;
  font-weight: 780;
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
  transition:
    transform 0.25s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.25s cubic-bezier(.2,.8,.2,1);
}

.case-youtube-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

/* animations */
@keyframes caseGridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 44px 44px;
  }
}

@keyframes caseGlassSweep {
  0%, 100% {
    transform: translateX(-35%);
    opacity: 0;
  }

  42% {
    opacity: 0.65;
  }

  62% {
    transform: translateX(28%);
    opacity: 0;
  }
}

@keyframes caseSoftGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.62;
  }

  50% {
    transform: translate(-18px, 20px) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes climateRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes climateRotateReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes climatePulse {
  0%, 100% {
    transform: scale(0.84);
    opacity: 0.68;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes caseTagShine {
  from {
    transform: translateX(-55%);
  }

  to {
    transform: translateX(55%);
  }
}

/* responsive */
@media (max-width: 1100px) {
  .case-shell-pro {
    grid-template-columns: 1fr;
  }

  .clean-video,
  .clean-video iframe {
    min-height: 430px;
  }

  .case-copy-pro {
    padding: 32px;
  }
}

@media (max-width: 760px) {
  .case-section-pro {
    padding: 24px 18px 78px;
  }

  .case-shell-pro {
    padding: 12px;
    border-radius: 34px;
  }

  .clean-video,
  .clean-video iframe {
    min-height: 330px;
    border-radius: 26px;
  }

  .case-copy-pro {
    padding: 26px 20px;
    border-radius: 26px;
  }


  .planet-main {
    width: 15px;
    height: 15px;
  }

  .case-copy-pro h2 {
    max-width: 330px;
    font-size: 25px;
  }

  .case-copy-pro p {
    font-size: 13px;
  }

  .case-meta-pro {
    grid-template-columns: 1fr;
  }

  .case-youtube-btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .case-section-pro {
    padding-left: 14px;
    padding-right: 14px;
  }

  .case-shell-pro {
    padding: 10px;
    border-radius: 28px;
  }

  .clean-video,
  .clean-video iframe {
    min-height: 260px;
    border-radius: 22px;
  }

  .case-copy-pro {
    padding: 24px 16px;
    border-radius: 22px;
  }


  .case-kicker {
    font-size: 9px;
    padding: 6px 9px;
  }

  .case-copy-pro h2 {
    max-width: 280px;
    font-size: 22px;
  }

  .case-tags-pro span {
    font-size: 10px;
    padding: 7px 10px;
  }

  .case-meta-pro article {
    min-height: 70px;
    padding: 13px;
    border-radius: 19px;
  }
}



/* =========================================================
   ULTRA PREMIUM CINEMATIC CASE STUDY
   Video side kept simple
========================================================= */

.case-cinema-section {
  position: relative;
  padding: 32px 24px 110px;
  background:
    radial-gradient(circle at 14% 12%, rgba(219, 234, 254, 0.34), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(237, 233, 254, 0.34), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f8 46%, #ffffff 100%);
  overflow: hidden;
}

.case-cinema-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 14px;
  border-radius: 46px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow:
    0 50px 160px rgba(0, 0, 0, 0.11),
    inset 0 1px 0 rgba(255,255,255,0.94);
}

/* -----------------------------------------
   VIDEO SIDE — CLEAN / SIMPLE
----------------------------------------- */

.case-cinema-video {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 34px;
  background: #050505;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.case-cinema-video iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
  background: #050505;
}

/* -----------------------------------------
   RIGHT PANEL
----------------------------------------- */

.case-cinema-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 480px;
  border-radius: 34px;
  border: 1px solid rgba(0, 0, 0, 0.065);
  background:
    radial-gradient(circle at 100% 0%, rgba(219,234,254,0.75), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(236,253,245,0.72), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.96);
  transform: translateZ(0);
}

.case-panel-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.048) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.9) 70%, transparent 100%);
  animation: caseMeshFlow 18s linear infinite;
}

.case-panel-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.12) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.case-panel-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  pointer-events: none;
}

.case-glow-one {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
  background: rgba(0, 122, 255, 0.14);
  animation: glowDriftOne 9s ease-in-out infinite;
}

.case-glow-two {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -100px;
  background: rgba(52, 199, 89, 0.11);
  animation: glowDriftTwo 12s ease-in-out infinite;
}

.case-panel-beam {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  background:
    linear-gradient(115deg,
      transparent 35%,
      rgba(255,255,255,0.72) 48%,
      transparent 61%);
  opacity: 0;
  transform: translateX(-34%);
  animation: caseGlassBeam 8s ease-in-out infinite;
}

.case-cinema-content {
  position: relative;
  z-index: 2;
  padding: 34px;
}

/* -----------------------------------------
   KICKER / TITLE / TEXT
----------------------------------------- */

.case-cinema-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.66);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.035),
    inset 0 1px 0 rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.case-cinema-kicker i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 5px rgba(52, 199, 89, 0.12);
  animation: casePulseDot 1.9s ease-in-out infinite;
}

.case-cinema-kicker span {
  color: #7a7a80;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-cinema-title {
  max-width: 470px;
  margin-top: 20px;
  color: #111;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.06;
  font-weight: 720;
  letter-spacing: -0.058em;
  animation: titleReveal 1s cubic-bezier(.2,.8,.2,1) both;
}

.case-cinema-text {
  max-width: 510px;
  margin-top: 18px;
  color: #6d6d73;
  font-size: 13.5px;
  line-height: 1.78;
  animation: textReveal 1.2s cubic-bezier(.2,.8,.2,1) both;
}

/* -----------------------------------------
   TAGS
----------------------------------------- */

.case-cinema-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-cinema-tags span {
  position: relative;
  overflow: hidden;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56));
  box-shadow:
    0 8px 22px rgba(0,0,0,0.03),
    inset 0 1px 0 rgba(255,255,255,0.92);
  color: #2b2b30;
  font-size: 10.5px;
  font-weight: 720;
  transition:
    transform 0.3s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.3s cubic-bezier(.2,.8,.2,1),
    border-color 0.3s cubic-bezier(.2,.8,.2,1);
}

.case-cinema-tags span::after {
  content: "";
  position: absolute;
  inset: -70%;
  background:
    linear-gradient(115deg,
      transparent 39%,
      rgba(255,255,255,0.9) 49%,
      transparent 60%);
  transform: translateX(-58%);
  opacity: 0;
}

.case-cinema-tags span:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(0,0,0,0.11);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.055),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.case-cinema-tags span:hover::after {
  opacity: 1;
  animation: tagSweep 1.1s ease forwards;
}

/* -----------------------------------------
   DATA SYSTEM — NO BORING BOX CARDS
----------------------------------------- */

.case-data-system {
  position: relative;
  margin-top: 28px;
  display: grid;
  gap: 0;
}

.case-data-system::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background:
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0,122,255,0.26) 12%,
      rgba(52,199,89,0.26) 50%,
      rgba(124,58,237,0.18) 86%,
      transparent 100%);
}

.case-data-row {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.055);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    padding-left 0.35s cubic-bezier(.2,.8,.2,1),
    background 0.35s cubic-bezier(.2,.8,.2,1);
}

.case-data-row:last-child {
  border-bottom: 0;
}

.case-data-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), transparent 35%),
    linear-gradient(145deg, #111, #7f7f86);
  transform: translate(-50%, -50%) scale(0.88);
  box-shadow:
    0 0 0 8px rgba(0,0,0,0.035),
    0 10px 22px rgba(0,0,0,0.06);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1);
}

.case-data-row::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 0;
  top: 8px;
  bottom: 8px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.62), rgba(255,255,255,0.2));
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.35s cubic-bezier(.2,.8,.2,1),
    transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.case-data-row:hover {
  padding-left: 24px;
  transform: translateX(3px);
}

.case-data-row:hover::before {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    0 0 0 10px rgba(0,122,255,0.05),
    0 12px 28px rgba(0,0,0,0.08);
}

.case-data-row:hover::after {
  opacity: 1;
  transform: scale(1);
}

.case-label,
.case-value-wrap {
  position: relative;
  z-index: 2;
}

.case-label {
  color: #98989e;
  font-size: 10px;
  font-weight: 790;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-value-wrap strong {
  color: #111;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 680;
  letter-spacing: -0.025em;
}

/* -----------------------------------------
   BUTTON
----------------------------------------- */

.case-cinema-button {
  position: relative;
  width: fit-content;
  min-width: 174px;
  height: 44px;
  margin-top: 28px;
  padding: 0 16px 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #111, #050505);
  color: white;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition:
    transform 0.3s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.3s cubic-bezier(.2,.8,.2,1);
}

.case-cinema-button span {
  font-size: 11px;
  font-weight: 760;
  letter-spacing: -0.015em;
}

.case-cinema-button i {
  width: 18px;
  height: 18px;
  position: relative;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.case-cinema-button i::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

.case-cinema-button:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 28px 68px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

/* -----------------------------------------
   TINY CLIMATE / UNIVERSE ACCENT
----------------------------------------- */



.halo-one {
  width: 64px;
  height: 64px;
  opacity: 0.75;
  animation: haloBreathOne 5s ease-in-out infinite;
}

.halo-two {
  width: 92px;
  height: 92px;
  opacity: 0.45;
  border-color: rgba(0,122,255,0.12);
  animation: haloBreathTwo 6.5s ease-in-out infinite;
}



.arc-one {
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%) rotate(24deg) skew(8deg, 2deg);
  animation: arcFloatOne 7s cubic-bezier(.2,.8,.2,1) infinite;
}

.arc-two {
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) rotate(-18deg) skew(-9deg, 4deg);
  animation: arcFloatTwo 6.2s cubic-bezier(.2,.8,.2,1) infinite;
}

.arc-three {
  width: 98px;
  height: 98px;
  transform: translate(-50%, -50%) rotate(62deg) skew(6deg, -5deg);
  border-top-color: rgba(124,58,237,0.15);
  border-left-color: rgba(0,122,255,0.08);
  animation: arcFloatThree 8s cubic-bezier(.2,.8,.2,1) infinite;
}



.p-one {
  width: 4px;
  height: 4px;
  left: 16px;
  top: 32px;
  animation: particleMoveOne 6.8s ease-in-out infinite;
}

.p-two {
  width: 5px;
  height: 5px;
  right: 16px;
  top: 22px;
  background: #dbeafe;
  animation: particleMoveTwo 7.4s ease-in-out infinite;
}

.p-three {
  width: 3px;
  height: 3px;
  right: 20px;
  bottom: 18px;
  background: #dcfce7;
  animation: particleMoveThree 5.8s ease-in-out infinite;
}

.p-four {
  width: 3px;
  height: 3px;
  left: 18px;
  bottom: 20px;
  background: #ede9fe;
  animation: particleMoveFour 7.2s ease-in-out infinite;
}




/* -----------------------------------------
   KEYFRAMES
----------------------------------------- */

@keyframes caseMeshFlow {
  from { background-position: 0 0; }
  to { background-position: 42px 42px; }
}

@keyframes glowDriftOne {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-10px, 18px, 0) scale(1.08); }
}

@keyframes glowDriftTwo {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(20px, -16px, 0) scale(1.06); }
}

@keyframes caseGlassBeam {
  0%, 100% {
    transform: translateX(-34%);
    opacity: 0;
  }
  42% {
    opacity: 0.52;
  }
  62% {
    transform: translateX(24%);
    opacity: 0;
  }
}

@keyframes casePulseDot {
  0%, 100% { transform: scale(0.86); opacity: 0.7; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes tagSweep {
  from { transform: translateX(-58%); }
  to { transform: translateX(58%); }
}

@keyframes accentCorePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  35% {
    transform: translate(-49%, -51%) scale(1.05);
  }
  70% {
    transform: translate(-51%, -49%) scale(0.97);
  }
}

@keyframes haloBreathOne {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.62;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
    opacity: 0.92;
  }
}

@keyframes haloBreathTwo {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.28;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.58;
  }
}

@keyframes arcFloatOne {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(24deg) skew(8deg, 2deg) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) rotate(34deg) skew(6deg, 1deg) scale(1.04);
  }
}

@keyframes arcFloatTwo {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-18deg) skew(-9deg, 4deg) scale(1);
  }
  50% {
    transform: translate(-52%, -48%) rotate(-8deg) skew(-5deg, 2deg) scale(0.97);
  }
}

@keyframes arcFloatThree {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(62deg) skew(6deg, -5deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(74deg) skew(9deg, -2deg) scale(1.03);
  }
}

@keyframes particleMoveOne {
  0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0.5; }
  50% { transform: translate(10px, -8px) scale(1.2); opacity: 1; }
}

@keyframes particleMoveTwo {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-12px, 8px) scale(1.18); opacity: 1; }
}

@keyframes particleMoveThree {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(-8px, -10px); opacity: 0.92; }
}

@keyframes particleMoveFour {
  0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.45; }
  50% { transform: translate(12px, -4px) scale(1.1); opacity: 0.88; }
}

@keyframes energyWaveOne {
  0%, 100% {
    transform: scaleX(0.92) scaleY(0.88);
    opacity: 0.2;
  }
  50% {
    transform: scaleX(1.05) scaleY(1.08);
    opacity: 0.55;
  }
}

@keyframes energyWaveTwo {
  0%, 100% {
    transform: scaleX(0.96) scaleY(0.9);
    opacity: 0.16;
  }
  50% {
    transform: scaleX(1.08) scaleY(1.12);
    opacity: 0.46;
  }
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 1180px) {
  .case-cinema-shell {
    grid-template-columns: 1fr;
  }

  .case-cinema-video,
  .case-cinema-video iframe {
    min-height: 430px;
  }
}

@media (max-width: 820px) {
  .case-cinema-section {
    padding: 24px 18px 86px;
  }

  .case-cinema-shell {
    padding: 12px;
    border-radius: 34px;
  }

  .case-cinema-video,
  .case-cinema-video iframe {
    min-height: 340px;
    border-radius: 26px;
  }

  .case-cinema-panel {
    min-height: auto;
    border-radius: 26px;
  }

  .case-cinema-content {
    padding: 24px 20px;
  }

  .case-cinema-title {
    max-width: 360px;
    font-size: 26px;
  }

  .case-cinema-text {
    font-size: 13px;
  }

  .case-data-row {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .climate-lux-accent {
    top: 18px;
    right: 18px;
    width: 88px;
    height: 88px;
    opacity: 0.92;
  }
}

@media (max-width: 560px) {
  .case-cinema-section {
    padding: 22px 14px 76px;
  }

  .case-cinema-shell {
    padding: 10px;
    border-radius: 28px;
  }

  .case-cinema-video,
  .case-cinema-video iframe {
    min-height: 250px;
    border-radius: 22px;
  }

  .case-cinema-panel {
    border-radius: 22px;
  }

  .case-cinema-content {
    padding: 20px 16px;
  }

  .case-cinema-title {
    max-width: 280px;
    font-size: 22px;
  }

  .case-cinema-text {
    font-size: 12.5px;
    line-height: 1.72;
  }

  .case-cinema-tags {
    gap: 7px;
  }

  .case-cinema-tags span {
    font-size: 10px;
    padding: 7px 10px;
  }

  .case-data-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0 14px 16px;
  }

  .case-label {
    font-size: 9px;
  }

  .case-value-wrap strong {
    font-size: 12px;
  }

  .case-cinema-button {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .climate-lux-accent {
    width: 68px;
    height: 68px;
    top: 16px;
    right: 14px;
  }

  .accent-core {
    width: 12px;
    height: 12px;
  }

  .halo-one {
    width: 44px;
    height: 44px;
  }

  .halo-two {
    width: 62px;
    height: 62px;
  }

  .arc-one {
    width: 58px;
    height: 58px;
  }

  .arc-two {
    width: 38px;
    height: 38px;
  }

  .arc-three {
    width: 68px;
    height: 68px;
  }

  .accent-wave {
    width: 68px;
    height: 24px;
  }
}

@media (max-width: 380px) {
  .case-cinema-title {
    font-size: 20px;
  }

  .case-cinema-text {
    font-size: 12px;
  }

  .case-cinema-kicker span {
    font-size: 9px;
  }
}


/* =========================================================
   IMPROVED PREMIUM PLANET ACCENT
   Better mobile responsiveness
   Planets move closer to center
========================================================= */

.climate-lux-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 92px;
  height: 92px;
  z-index: 4;
  pointer-events: none;
}

.planet-system {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: systemFloat 8s cubic-bezier(.2,.8,.2,1) infinite;
}

/* center */
.planet-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(145deg, #0f1115, #5e646d);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.06),
    0 10px 24px rgba(0,0,0,0.15),
    0 0 18px rgba(0,122,255,0.10);
  animation: corePulse 5s ease-in-out infinite;
}

/* orbit rings - made tighter / closer */
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.07);
  opacity: 0.9;
}

.ring-a {
  width: 34px;
  height: 34px;
  border-color: rgba(0,122,255,0.13);
  box-shadow: 0 0 14px rgba(0,122,255,0.04);
}

.ring-b {
  width: 50px;
  height: 50px;
  border-color: rgba(52,199,89,0.13);
  transform: translate(-50%, -50%) rotate(16deg) scaleX(1.04);
}

.ring-c {
  width: 64px;
  height: 46px;
  border-color: rgba(124,58,237,0.11);
  transform: translate(-50%, -50%) rotate(-14deg) scaleX(1.1);
  opacity: 0.68;
}

/* orbit wrappers */
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: center;
}

.orbit-a {
  animation: orbitSpinA 7s linear infinite;
}

.orbit-b {
  animation: orbitSpinB 10s linear infinite;
}

.orbit-c {
  animation: orbitSpinC 13s linear infinite;
}

/* planets - closer to center now */
.planet {
  position: absolute;
  display: block;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.planet-a {
  width: 7px;
  height: 7px;
  top: 16px;
  left: 44px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), transparent 35%),
    linear-gradient(145deg, #34c759, #0f7c43);
  box-shadow:
    0 0 0 4px rgba(52,199,89,0.07),
    0 0 16px rgba(52,199,89,0.16);
}

.planet-b {
  width: 8px;
  height: 8px;
  top: 42px;
  right: 14px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), transparent 35%),
    linear-gradient(145deg, #007aff, #3b82f6);
  box-shadow:
    0 0 0 4px rgba(0,122,255,0.07),
    0 0 16px rgba(0,122,255,0.16);
}

.planet-c {
  width: 5px;
  height: 5px;
  left: 18px;
  bottom: 20px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), transparent 35%),
    linear-gradient(145deg, #dfe7ff, #8b95a7);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.08),
    0 0 12px rgba(124,58,237,0.10);
}

/* dust */
.space-dust {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 10px rgba(255,255,255,0.35);
}

.dust-1 {
  width: 2px;
  height: 2px;
  top: 10px;
  right: 20px;
  animation: dustFloatOne 4.8s ease-in-out infinite;
}

.dust-2 {
  width: 2px;
  height: 2px;
  left: 10px;
  top: 36px;
  animation: dustFloatTwo 5.6s ease-in-out infinite;
}

.dust-3 {
  width: 2px;
  height: 2px;
  right: 14px;
  bottom: 14px;
  animation: dustFloatThree 6.1s ease-in-out infinite;
}

.dust-4 {
  width: 2px;
  height: 2px;
  left: 22px;
  bottom: 8px;
  animation: dustFloatFour 5.1s ease-in-out infinite;
}

/* energy trails */
.energy-trail {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.trail-a {
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(255,255,255,0.0);
  border-right: 1px solid rgba(0,122,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.0);
  border-left: 1px solid rgba(52,199,89,0.08);
  animation: trailSpinA 8.5s linear infinite;
}

.trail-b {
  width: 40px;
  height: 40px;
  border-top: 1px solid rgba(124,58,237,0.11);
  border-right: 1px solid rgba(255,255,255,0);
  border-bottom: 1px solid rgba(255,255,255,0);
  border-left: 1px solid rgba(0,122,255,0.09);
  opacity: 0.68;
  animation: trailSpinB 6.5s linear infinite reverse;
}

/* keep title/text safe from overlap */
.case-cinema-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  padding-right: 122px;
}

/* animations */
@keyframes systemFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-3px) translateX(-2px);
  }
}

@keyframes corePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.07);
  }
}

@keyframes orbitSpinA {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinB {
  from { transform: rotate(0deg) scaleX(1.02); }
  to { transform: rotate(-360deg) scaleX(1.02); }
}

@keyframes orbitSpinC {
  from { transform: rotate(0deg) scaleY(0.95); }
  to { transform: rotate(360deg) scaleY(0.95); }
}

@keyframes trailSpinA {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0.82;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.4;
  }
}

@keyframes trailSpinB {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.24;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0.58;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.24;
  }
}

@keyframes dustFloatOne {
  0%, 100% { transform: translate(0,0) scale(0.8); opacity: 0.4; }
  50% { transform: translate(4px,-4px) scale(1.15); opacity: 1; }
}

@keyframes dustFloatTwo {
  0%, 100% { transform: translate(0,0); opacity: 0.35; }
  50% { transform: translate(-3px,3px); opacity: 0.8; }
}

@keyframes dustFloatThree {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.45; }
  50% { transform: translate(4px,-2px) scale(1.1); opacity: 0.95; }
}

@keyframes dustFloatFour {
  0%, 100% { transform: translate(0,0) scale(0.75); opacity: 0.4; }
  50% { transform: translate(-2px,-4px) scale(1.05); opacity: 0.8; }
}

/* =========================
   TABLET
========================= */
@media (max-width: 820px) {
  .climate-lux-accent {
    top: 16px;
    right: 16px;
    width: 76px;
    height: 76px;
  }

  .case-cinema-content {
    padding: 24px 18px;
    padding-right: 98px;
  }

  .planet-core {
    width: 11px;
    height: 11px;
  }

  .ring-a {
    width: 28px;
    height: 28px;
  }

  .ring-b {
    width: 40px;
    height: 40px;
  }

  .ring-c {
    width: 52px;
    height: 38px;
  }

  .planet-a {
    width: 6px;
    height: 6px;
    top: 12px;
    left: 36px;
  }

  .planet-b {
    width: 7px;
    height: 7px;
    top: 34px;
    right: 12px;
  }

  .planet-c {
    width: 4px;
    height: 4px;
    left: 14px;
    bottom: 16px;
  }

  .trail-a {
    width: 46px;
    height: 46px;
  }

  .trail-b {
    width: 32px;
    height: 32px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 560px) {
  .climate-lux-accent {
    top: 12px;
    right: 12px;
    width: 60px;
    height: 60px;
    opacity: 0.92;
  }

  .case-cinema-content {
    padding: 18px 14px;
    padding-right: 78px;
  }

  .planet-core {
    width: 9px;
    height: 9px;
    box-shadow:
      0 0 0 4px rgba(255,255,255,0.06),
      0 7px 16px rgba(0,0,0,0.12),
      0 0 12px rgba(0,122,255,0.08);
  }

  .ring-a {
    width: 22px;
    height: 22px;
  }

  .ring-b {
    width: 32px;
    height: 32px;
  }

  .ring-c {
    width: 42px;
    height: 30px;
  }

  .planet-a {
    width: 4px;
    height: 4px;
    top: 10px;
    left: 28px;
  }

  .planet-b {
    width: 5px;
    height: 5px;
    top: 26px;
    right: 10px;
  }

  .planet-c {
    width: 3px;
    height: 3px;
    left: 12px;
    bottom: 13px;
  }

  .trail-a {
    width: 36px;
    height: 36px;
  }

  .trail-b {
    width: 24px;
    height: 24px;
  }

  .space-dust {
    opacity: 0.6;
  }
}

/* =========================
   EXTRA SMALL MOBILE
========================= */
@media (max-width: 380px) {
  .climate-lux-accent {
    width: 52px;
    height: 52px;
    top: 10px;
    right: 10px;
  }

  .case-cinema-content {
    padding-right: 68px;
  }

  .ring-a {
    width: 18px;
    height: 18px;
  }

  .ring-b {
    width: 26px;
    height: 26px;
  }

  .ring-c {
    width: 34px;
    height: 24px;
  }

  .planet-a {
    top: 8px;
    left: 24px;
  }

  .planet-b {
    top: 22px;
    right: 9px;
  }

  .planet-c {
    left: 10px;
    bottom: 11px;
  }
}




/* =========================================================
   PREMIUM CLIENTS SECTION
   No section background color added
========================================================= */

.premium-clients-section {
  position: relative;
  padding: 88px 24px 92px;
  overflow: hidden;
}

/* no background color here intentionally */

.clients-heading {
  width: min(100%, var(--max));
  margin: 0 auto 28px;
  text-align: center;
}

.clients-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #8a8a90;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-heading h2 {
  color: #111;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.clients-heading p {
  margin-top: 10px;
  color: #78787f;
  font-size: 12px;
  line-height: 1.6;
}

.premium-clients-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.premium-client-card {
  position: relative;
  min-height: 154px;
  padding: 16px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.065);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.55));
  backdrop-filter: blur(28px) saturate(175%);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.045),
    0 2px 8px rgba(0,0,0,0.02),
    inset 0 1px 0 rgba(255,255,255,0.92);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s cubic-bezier(.2,.8,.2,1);
  isolation: isolate;
}

.premium-client-card::before {
  content: "";
  position: absolute;
  inset: -70%;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(255,255,255,0.85) 49%,
      transparent 58%
    );
  transform: translateX(-55%);
  opacity: 0;
  pointer-events: none;
}

.premium-client-card:hover {
  border-color: rgba(0,0,0,0.11);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.08),
    0 8px 22px rgba(0,0,0,0.035),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.premium-client-card:hover::before {
  opacity: 1;
  animation: clientSweep 1.3s ease forwards;
}

.client-card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -28px;
  top: -34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  filter: blur(26px);
  opacity: 0.85;
  pointer-events: none;
  animation: clientGlowFloat 6.5s ease-in-out infinite;
}

.client-card-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.11) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.premium-client-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.premium-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  flex: 0 0 58px;
}

.premium-avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 120deg,
      rgba(0,122,255,0.14),
      rgba(52,199,89,0.12),
      rgba(124,58,237,0.12),
      rgba(0,122,255,0.14)
    );
  animation: clientRingRotate 8s linear infinite;
  filter: saturate(1.15);
}

.premium-avatar-ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
}

.premium-avatar {
  position: absolute;
  inset: 3px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 2;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.1),
    0 0 0 1px rgba(0,0,0,0.06);
}

.premium-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-client-meta h3 {
  color: #111;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 680;
  letter-spacing: -0.03em;
}

.premium-client-meta p {
  margin-top: 6px;
  color: #7a7a81;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 570;
}

.client-bottom-line {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-bottom-line span {
  white-space: nowrap;
  color: #9a9aa1;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-bottom-line i {
  position: relative;
  flex: 1;
  height: 1px;
  display: block;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.12),
    rgba(0,122,255,0.18),
    rgba(52,199,89,0.12),
    rgba(0,0,0,0.04)
  );
  overflow: hidden;
}

.client-bottom-line i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 36%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
  animation: lineFlow 3.8s ease-in-out infinite;
}

/* animations */
@keyframes clientSweep {
  from {
    transform: translateX(-55%);
  }
  to {
    transform: translateX(55%);
  }
}

@keyframes clientGlowFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-8px, 10px) scale(1.08);
    opacity: 1;
  }
}

@keyframes clientRingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes lineFlow {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    transform: translateX(150%);
    opacity: 1;
  }
  100% {
    transform: translateX(150%);
    opacity: 0;
  }
}

/* =========================
   Large tablet
========================= */
@media (max-width: 1180px) {
  .premium-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   Tablet
========================= */
@media (max-width: 820px) {
  .premium-clients-section {
    padding: 72px 18px 80px;
  }

  .premium-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .premium-client-card {
    min-height: 148px;
    border-radius: 24px;
  }

  .premium-avatar-wrap {
    width: 54px;
    height: 54px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 560px) {
  .premium-clients-section {
    padding: 64px 14px 74px;
  }

  .clients-heading {
    margin-bottom: 22px;
  }

  .clients-heading h2 {
    font-size: 24px;
  }

  .clients-heading p {
    font-size: 11px;
  }

  .premium-clients-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-client-card {
    min-height: 112px;
    padding: 14px;
    display: flex;
    align-items: center;
    border-radius: 22px;
  }

  .premium-client-top {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .premium-avatar-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex: 0 0 52px;
  }

  .premium-client-meta h3 {
    font-size: 13px;
  }

  .premium-client-meta p {
    font-size: 10.5px;
  }

  .client-bottom-line {
    left: 80px;
    right: 14px;
    bottom: 12px;
  }
}

/* =========================
   Extra small mobile
========================= */
@media (max-width: 380px) {
  .premium-client-card {
    min-height: 106px;
    padding: 13px;
  }

  .premium-avatar-wrap {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .client-bottom-line span {
    font-size: 8px;
  }
}





/* =========================================================
   PREMIUM STUDIO REDESIGN
   No orbit design. Editorial / cinematic / Apple-style.
========================================================= */

.studio-pro-section {
  position: relative;
  padding: 104px 24px;
  overflow: hidden;
}

.studio-pro-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.studio-pro-heading {
  max-width: 620px;
  margin-bottom: 34px;
}

.studio-pro-heading span {
  display: block;
  margin-bottom: 10px;
  color: #8a8a90;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.studio-pro-heading h2 {
  color: #111;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.06;
  font-weight: 720;
  letter-spacing: -0.06em;
}

.studio-pro-heading p {
  max-width: 460px;
  margin-top: 13px;
  color: #77777d;
  font-size: 13px;
  line-height: 1.65;
}

/* layout */
.studio-pro-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

/* shared premium surface */
.studio-pro-feature,
.studio-pro-row,
.studio-pro-final {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.52));
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.065),
    inset 0 1px 0 rgba(255,255,255,0.92);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s cubic-bezier(.2,.8,.2,1);
}



/* MAIN FEATURE */
.studio-pro-feature {
  min-height: 430px;
  padding: 30px;
  border-radius: 40px;
  isolation: isolate;
}

.studio-feature-light {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.86);
  filter: blur(38px);
  animation: studioFeatureLight 7s ease-in-out infinite;
  pointer-events: none;
}

.studio-feature-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  animation: studioGridDrift 18s linear infinite;
}

.studio-feature-scan {
  position: absolute;
  inset: -60%;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.72) 49%,
      transparent 61%
    );
  opacity: 0;
  animation: studioGlassScan 7s ease-in-out infinite;
}

.studio-feature-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.studio-feature-top span {
  color: #8f8f96;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-feature-top small {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.studio-feature-copy {
  position: relative;
  z-index: 2;
  margin-top: 82px;
}

.studio-feature-copy h3 {
  color: #111;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.055em;
}

.studio-feature-copy p {
  max-width: 430px;
  margin-top: 13px;
  color: #737379;
  font-size: 13px;
  line-height: 1.7;
}

/* animated edit system */
.studio-edit-system {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,0.065);
  background: rgba(245,245,247,0.72);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.045),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.edit-system-head {
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
}

.edit-system-head span {
  color: #85858c;
  font-size: 10px;
  font-weight: 760;
}

.edit-track {
  height: 9px;
  display: flex;
  gap: 6px;
  margin-top: 7px;
}

.edit-track i {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
}

.edit-track i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.7),
      transparent
    );
  animation: editClipSweep 3.2s ease-in-out infinite;
}

.track-one i:nth-child(1) {
  width: 35%;
  background: linear-gradient(90deg, #111, #777);
}

.track-one i:nth-child(2) {
  width: 18%;
  background: linear-gradient(90deg, #d7d7dc, #a1a1a6);
}

.track-one i:nth-child(3) {
  width: 25%;
  background: linear-gradient(90deg, #c7d2fe, #dbeafe);
}

.track-two i:nth-child(1) {
  width: 44%;
  margin-left: 10%;
  background: linear-gradient(90deg, #d7d7dc, #a1a1a6);
}

.track-two i:nth-child(2) {
  width: 26%;
  background: linear-gradient(90deg, #111, #777);
}

.track-three i:nth-child(1) {
  width: 26%;
  background: linear-gradient(90deg, #c7d2fe, #dbeafe);
}

.track-three i:nth-child(2) {
  width: 36%;
  background: linear-gradient(90deg, #111, #777);
}

.track-three i:nth-child(3) {
  width: 18%;
  background: linear-gradient(90deg, #d7d7dc, #a1a1a6);
}

.edit-playhead {
  position: absolute;
  top: 40px;
  bottom: 14px;
  left: 12%;
  width: 1px;
  background: rgba(0,0,0,0.35);
  animation: studioPlayhead 5.2s linear infinite;
}

.edit-playhead::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #111;
}

/* STACK */
.studio-pro-stack {
  display: grid;
  gap: 14px;
}

.studio-pro-row {
  min-height: 134px;
  padding: 18px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 38px 1fr 42px;
  gap: 12px;
  align-items: center;
}

.studio-pro-row::before {
  content: "";
  position: absolute;
  inset: -70%;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(255,255,255,0.82) 49%,
      transparent 58%
    );
  transform: translateX(-58%);
  opacity: 0;
}

.studio-pro-row:hover::before {
  opacity: 1;
  animation: studioRowSweep 1.2s ease forwards;
}

.studio-pro-row.dark {
  color: #fff;
  border-color: rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.16), transparent 30%),
    linear-gradient(145deg, #070707, #1b1b20);
}

.studio-row-index {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 10px;
  font-weight: 800;
}

.studio-pro-row.dark .studio-row-index {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.studio-row-copy {
  position: relative;
  z-index: 2;
}

.studio-row-copy span {
  display: block;
  margin-bottom: 5px;
  color: #9a9aa0;
  font-size: 9.5px;
  font-weight: 790;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.studio-row-copy h3 {
  color: #111;
  font-size: 15px;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.studio-row-copy p {
  margin-top: 6px;
  color: #74747b;
  font-size: 11.5px;
  line-height: 1.45;
}

.studio-pro-row.dark .studio-row-copy span {
  color: rgba(255,255,255,0.46);
}

.studio-pro-row.dark .studio-row-copy h3 {
  color: #fff;
}

.studio-pro-row.dark .studio-row-copy p {
  color: rgba(255,255,255,0.58);
}

.studio-row-meter {
  position: relative;
  z-index: 2;
  height: 54px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 5px;
}

.studio-row-meter i {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to top, #111, #b8b8bf);
  animation: studioMeterPulse 1.6s ease-in-out infinite alternate;
}

.studio-row-meter i:nth-child(1) {
  height: 40%;
}

.studio-row-meter i:nth-child(2) {
  height: 72%;
  animation-delay: 0.15s;
}

.studio-row-meter i:nth-child(3) {
  height: 54%;
  animation-delay: 0.3s;
}

.studio-pro-row.dark .studio-row-meter i {
  background: linear-gradient(to top, rgba(255,255,255,0.18), rgba(255,255,255,0.9));
}

/* FINAL PANEL */
.studio-pro-final {
  min-height: 430px;
  padding: 28px;
  border-radius: 40px;
  isolation: isolate;
}

.studio-final-light {
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(219,234,254,0.75);
  filter: blur(42px);
  animation: studioFinalLight 8s ease-in-out infinite;
}

.studio-final-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0,0,0,0.045) 0px,
      rgba(0,0,0,0.045) 1px,
      transparent 1px,
      transparent 14px
    );
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  animation: studioDiagonalMove 16s linear infinite;
}

.studio-final-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
}

.studio-final-label span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.studio-final-label small {
  color: #88888f;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-pro-final h3 {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin-top: 68px;
  color: #111;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -0.055em;
}

.studio-pro-final p {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin-top: 14px;
  color: #727279;
  font-size: 13px;
  line-height: 1.68;
}

.studio-final-stats {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.studio-final-stats div {
  position: relative;
  overflow: hidden;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(0,0,0,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}

.studio-final-stats div::after {
  content: "";
  position: absolute;
  inset: -80%;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(255,255,255,0.8) 50%,
      transparent 60%
    );
  transform: translateX(-55%);
  opacity: 0;
}

.studio-final-stats div:hover::after {
  opacity: 1;
  animation: studioStatSweep 1.1s ease forwards;
}

.studio-final-stats span {
  color: #97979d;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.studio-final-stats strong {
  color: #111;
  font-size: 12px;
  font-weight: 760;
}

/* signal animation */
.studio-signal {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  width: 70px;
  height: 38px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 5px;
}

.studio-signal i {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(to top, #111, #a1a1a6, #fff);
  animation: studioSignalMove 1.2s ease-in-out infinite alternate;
}

.studio-signal i:nth-child(1) {
  height: 28%;
}

.studio-signal i:nth-child(2) {
  height: 58%;
  animation-delay: 0.1s;
}

.studio-signal i:nth-child(3) {
  height: 88%;
  animation-delay: 0.2s;
}

.studio-signal i:nth-child(4) {
  height: 48%;
  animation-delay: 0.3s;
}

.studio-signal i:nth-child(5) {
  height: 70%;
  animation-delay: 0.4s;
}

/* animations */
@keyframes studioFeatureLight {
  0%, 100% {
    transform: translate(0,0) scale(1);
    opacity: 0.78;
  }

  50% {
    transform: translate(-18px,20px) scale(1.08);
    opacity: 1;
  }
}

@keyframes studioGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 44px 44px;
  }
}

@keyframes studioGlassScan {
  0%, 100% {
    transform: translateX(-35%);
    opacity: 0;
  }

  42% {
    opacity: 0.6;
  }

  62% {
    transform: translateX(28%);
    opacity: 0;
  }
}

@keyframes editClipSweep {
  0%, 100% {
    transform: translateX(-120%);
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  68% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes studioPlayhead {
  from {
    left: 10%;
  }

  to {
    left: 92%;
  }
}

@keyframes studioRowSweep {
  from {
    transform: translateX(-58%);
  }

  to {
    transform: translateX(58%);
  }
}

@keyframes studioMeterPulse {
  from {
    transform: scaleY(0.72);
    opacity: 0.62;
  }

  to {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

@keyframes studioFinalLight {
  0%, 100% {
    transform: translate(0,0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(22px,-18px) scale(1.08);
    opacity: 1;
  }
}

@keyframes studioDiagonalMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 42px 42px;
  }
}

@keyframes studioStatSweep {
  from {
    transform: translateX(-55%);
  }

  to {
    transform: translateX(55%);
  }
}

@keyframes studioSignalMove {
  from {
    transform: scaleY(0.7);
    opacity: 0.62;
  }

  to {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

/* responsive */
@media (max-width: 1180px) {
  .studio-pro-layout {
    grid-template-columns: 1fr;
  }

  .studio-pro-feature,
  .studio-pro-final {
    min-height: 380px;
  }

  .studio-pro-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .studio-pro-row {
    min-height: 160px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .studio-row-meter {
    height: 34px;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .studio-pro-section {
    padding: 82px 18px;
  }

  .studio-pro-heading h2 {
    font-size: 28px;
  }

  .studio-pro-layout {
    gap: 12px;
  }

  .studio-pro-feature,
  .studio-pro-final {
    padding: 24px;
    min-height: 360px;
    border-radius: 30px;
  }

  .studio-pro-stack {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .studio-pro-row {
    min-height: auto;
    grid-template-columns: 38px 1fr 40px;
    border-radius: 24px;
  }

  .studio-row-meter {
    height: 48px;
    justify-content: flex-end;
  }

  .studio-feature-copy {
    margin-top: 62px;
  }

  .studio-pro-final h3 {
    margin-top: 54px;
  }
}

@media (max-width: 560px) {
  .studio-pro-section {
    padding: 72px 14px;
  }

  .studio-pro-heading {
    margin-bottom: 24px;
  }

  .studio-pro-heading h2 {
    font-size: 24px;
  }

  .studio-pro-heading p {
    font-size: 12.5px;
  }

  .studio-pro-feature,
  .studio-pro-final {
    padding: 20px;
    min-height: 340px;
    border-radius: 24px;
  }

  .studio-feature-copy h3,
  .studio-pro-final h3 {
    font-size: 21px;
  }

  .studio-feature-copy p,
  .studio-pro-final p {
    font-size: 12.5px;
  }

  .studio-edit-system {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 13px;
    border-radius: 20px;
  }

  .studio-pro-row {
    padding: 16px;
    grid-template-columns: 32px 1fr;
  }

  .studio-row-meter {
    display: none;
  }

  .studio-row-index {
    width: 28px;
    height: 28px;
  }

  .studio-signal {
    display: none;
  }

  .studio-final-stats {
    margin-top: 22px;
  }
}

@media (max-width: 380px) {
  .studio-pro-heading h2 {
    font-size: 22px;
  }

  .studio-pro-feature,
  .studio-pro-final {
    min-height: 325px;
  }

  .studio-feature-copy {
    margin-top: 50px;
  }

  .studio-pro-final h3 {
    margin-top: 46px;
  }
}









/* =========================================================
   ULTRA MODERN CONTACT VISUAL
   Futuristic / cinematic / premium / no boring animation
========================================================= */

.contact-hyper-art {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 70% 18%, rgba(255,255,255,0.16), transparent 24%),
    radial-gradient(circle at 18% 86%, rgba(0,122,255,0.25), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(124,58,237,0.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.032));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 28px 100px rgba(0,0,0,0.26);
  isolation: isolate;
}

.hyper-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 76%);
  animation: hyperGridMove 20s linear infinite;
}

.hyper-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
  animation: hyperNoiseShift 1.4s steps(3) infinite;
}

.hyper-light {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  pointer-events: none;
  z-index: 1;
}

.light-one {
  width: 300px;
  height: 300px;
  left: -100px;
  bottom: -100px;
  background: rgba(0,122,255,0.28);
  animation: hyperGlowOne 8s cubic-bezier(.2,.8,.2,1) infinite;
}

.light-two {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  background: rgba(255,255,255,0.18);
  animation: hyperGlowTwo 9s cubic-bezier(.2,.8,.2,1) infinite;
}

.hyper-beam {
  position: absolute;
  inset: -70%;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.22) 48%,
      transparent 58%
    );
  opacity: 0;
  animation: hyperBeamSweep 7s ease-in-out infinite;
}

.hyper-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  perspective: 1400px;
  transform-style: preserve-3d;
}

/* main floating panel */
.hyper-glass-panel {
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.panel-main {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 430px);
  overflow: hidden;
  border-radius: 32px;
  transform: translate(-50%, -50%) rotateX(7deg) rotateY(-8deg);
  animation: mainPanelFloat 7s cubic-bezier(.2,.8,.2,1) infinite;
}

.panel-main::before {
  content: "";
  position: absolute;
  inset: -80%;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(255,255,255,0.18) 49%,
      transparent 58%
    );
  animation: panelInternalSweep 5.4s ease-in-out infinite;
}

.panel-top {
  position: relative;
  z-index: 2;
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
}

.panel-top span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
}

.panel-top p {
  margin-left: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  font-weight: 720;
}

.panel-content {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.incoming-line {
  padding: 15px;
  border-radius: 21px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.incoming-line.small {
  width: 78%;
  margin-top: 10px;
  margin-left: auto;
}

.incoming-line span {
  display: block;
  color: rgba(255,255,255,0.42);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.incoming-line strong {
  display: block;
  margin-top: 7px;
  color: white;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

/* animated signal map */
.signal-map {
  height: 78px;
  margin-top: 16px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 7px;
}

.signal-map i {
  width: 7px;
  border-radius: 999px;
  background:
    linear-gradient(to top, rgba(0,122,255,0.22), rgba(255,255,255,0.88));
  filter: drop-shadow(0 0 12px rgba(0,122,255,0.14));
  animation: signalWave 1.2s ease-in-out infinite alternate;
}

.signal-map i:nth-child(1) { height: 28%; }
.signal-map i:nth-child(2) { height: 55%; animation-delay: .1s; }
.signal-map i:nth-child(3) { height: 92%; animation-delay: .2s; }
.signal-map i:nth-child(4) { height: 48%; animation-delay: .3s; }
.signal-map i:nth-child(5) { height: 76%; animation-delay: .4s; }
.signal-map i:nth-child(6) { height: 36%; animation-delay: .5s; }

/* floating mini panels */
.panel-float {
  position: absolute;
  z-index: 8;
  min-width: 142px;
  padding: 12px 13px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.panel-float span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 9px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13);
}

.panel-float strong {
  color: rgba(255,255,255,0.82);
  font-size: 10.5px;
  font-weight: 740;
  white-space: nowrap;
}

.panel-float-one {
  left: 34px;
  top: 58px;
  animation: floatChipOne 5.6s ease-in-out infinite;
}

.panel-float-two {
  right: 34px;
  top: 96px;
  animation: floatChipTwo 6.4s ease-in-out infinite;
}

.panel-float-three {
  right: 62px;
  bottom: 54px;
  animation: floatChipThree 5.9s ease-in-out infinite;
}

/* futuristic moving light threads */
.light-thread {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.12),
      rgba(0,122,255,0.32),
      transparent
    );
  filter: blur(0.2px);
  opacity: 0.75;
}

.thread-one {
  left: 12%;
  top: 28%;
  width: 72%;
  transform: rotate(-8deg);
  animation: threadFlow 4.4s ease-in-out infinite;
}

.thread-two {
  left: 18%;
  top: 62%;
  width: 62%;
  transform: rotate(9deg);
  animation: threadFlow 5.2s ease-in-out infinite reverse;
}

.thread-three {
  left: 28%;
  top: 78%;
  width: 42%;
  transform: rotate(-14deg);
  animation: threadFlow 4.8s ease-in-out infinite;
}

/* particle field */
.particle-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle-field i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 0 14px rgba(255,255,255,0.35);
  animation: particleDrift 6s ease-in-out infinite;
}

.particle-field i:nth-child(1) { left: 12%; top: 18%; animation-delay: .1s; }
.particle-field i:nth-child(2) { left: 24%; top: 72%; animation-delay: .4s; }
.particle-field i:nth-child(3) { left: 78%; top: 18%; animation-delay: .7s; }
.particle-field i:nth-child(4) { left: 84%; top: 68%; animation-delay: 1s; }
.particle-field i:nth-child(5) { left: 52%; top: 12%; animation-delay: 1.3s; }
.particle-field i:nth-child(6) { left: 44%; top: 84%; animation-delay: 1.6s; }
.particle-field i:nth-child(7) { left: 8%; top: 52%; animation-delay: 1.9s; }
.particle-field i:nth-child(8) { left: 92%; top: 42%; animation-delay: 2.2s; }
.particle-field i:nth-child(9) { left: 34%; top: 28%; animation-delay: 2.5s; }
.particle-field i:nth-child(10) { left: 68%; top: 78%; animation-delay: 2.8s; }
.particle-field i:nth-child(11) { left: 60%; top: 36%; animation-delay: 3.1s; }
.particle-field i:nth-child(12) { left: 18%; top: 36%; animation-delay: 3.4s; }

/* animations */
@keyframes hyperGridMove {
  from { background-position: 0 0; }
  to { background-position: 42px 42px; }
}

@keyframes hyperNoiseShift {
  0% { transform: translate(0,0); }
  33% { transform: translate(-1px,1px); }
  66% { transform: translate(1px,-1px); }
  100% { transform: translate(0,0); }
}

@keyframes hyperGlowOne {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .72; }
  50% { transform: translate(24px,-18px) scale(1.12); opacity: 1; }
}

@keyframes hyperGlowTwo {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .5; }
  50% { transform: translate(-22px,24px) scale(1.1); opacity: .88; }
}

@keyframes hyperBeamSweep {
  0%, 100% { transform: translateX(-34%); opacity: 0; }
  42% { opacity: .7; }
  62% { transform: translateX(28%); opacity: 0; }
}

@keyframes mainPanelFloat {
  0%, 100% {
    transform: translate(-50%, -50%) rotateX(7deg) rotateY(-8deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(5deg) rotateY(-4deg) translateY(-12px);
  }
}

@keyframes panelInternalSweep {
  0%, 100% { transform: translateX(-34%); opacity: 0; }
  44% { opacity: .8; }
  65% { transform: translateX(34%); opacity: 0; }
}

@keyframes signalWave {
  from { transform: scaleY(.62); opacity: .55; }
  to { transform: scaleY(1.15); opacity: 1; }
}

@keyframes floatChipOne {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(10px,-10px); }
}

@keyframes floatChipTwo {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-12px,8px); }
}

@keyframes floatChipThree {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-8px,-12px); }
}

@keyframes threadFlow {
  0%, 100% {
    opacity: .15;
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: .9;
    clip-path: inset(0 0 0 0);
  }
  70% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes particleDrift {
  0%, 100% {
    transform: translate(0,0) scale(.75);
    opacity: .32;
  }
  50% {
    transform: translate(10px,-14px) scale(1.18);
    opacity: .95;
  }
}

/* responsive */
@media (max-width: 1000px) {
  .contact-hyper-art {
    min-height: 390px;
  }

  .panel-main {
    width: min(80%, 420px);
  }
}

@media (max-width: 620px) {
  .contact-hyper-art {
    min-height: 330px;
    border-radius: 24px;
  }

  .panel-main {
    width: 86%;
    border-radius: 24px;
  }

  .panel-top {
    height: 36px;
  }

  .panel-content {
    padding: 14px;
  }

  .incoming-line {
    padding: 12px;
    border-radius: 17px;
  }

  .incoming-line strong {
    font-size: 11.5px;
  }

  .incoming-line.small {
    width: 88%;
  }

  .signal-map {
    height: 54px;
  }

  .panel-float {
    min-width: auto;
    padding: 8px 10px;
  }

  .panel-float strong {
    font-size: 9.5px;
  }

  .panel-float span {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .panel-float-one {
    left: 14px;
    top: 30px;
  }

  .panel-float-two {
    right: 14px;
    top: 52px;
  }

  .panel-float-three {
    display: none;
  }

  .light-thread {
    opacity: .55;
  }
}

@media (max-width: 390px) {
  .contact-hyper-art {
    min-height: 300px;
  }

  .panel-float {
    display: none;
  }

  .panel-main {
    width: 90%;
  }
} 























/* =========================================================
   CONTACT SECTION — NO FORM / PREMIUM VISUAL
========================================================= */

.contact-visual-section {
  position: relative;
  padding: 42px 24px 96px !important;
  overflow: hidden;
}

.contact-visual-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  overflow: hidden;
  border-radius: 46px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,0.16), transparent 28%),
    radial-gradient(circle at 82% 84%, rgba(0,122,255,0.16), transparent 30%),
    linear-gradient(145deg, #050505, #17171b 54%, #08080a);
  box-shadow:
    0 52px 150px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* LEFT SIDE */

.contact-visual-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 48px 36px;
}

.contact-mini-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-mini-label i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34c759;
  box-shadow: 0 0 0 5px rgba(52,199,89,0.12);
  animation: contactDotPulse 1.8s ease-in-out infinite;
}

.contact-mini-label span {
  color: rgba(255,255,255,0.62);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-visual-copy h2 {
  max-width: 490px;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 720;
  letter-spacing: -0.062em;
}

.contact-visual-copy p {
  max-width: 460px;
  margin-top: 20px;
  color: rgba(255,255,255,0.58);
  font-size: 13.5px;
  line-height: 1.74;
}

.contact-methods {
  margin-top: 32px;
  display: grid;
  gap: 10px;
  max-width: 360px;
}

.contact-method {
  position: relative;
  min-height: 64px;
  padding: 14px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition:
    border-color 0.28s cubic-bezier(.2,.8,.2,1),
    background 0.28s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.28s cubic-bezier(.2,.8,.2,1);
}

.contact-method::before {
  content: "";
  position: absolute;
  inset: -80% -45%;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.18) 49%,
      transparent 62%
    );
  transform: translateX(-60%);
  opacity: 0;
}

.contact-method:hover {
  border-color: rgba(255,255,255,0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  box-shadow:
    0 24px 64px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.contact-method:hover::before {
  opacity: 1;
  animation: contactMethodSweep 1.1s ease forwards;
}

.contact-method span,
.contact-method strong {
  position: relative;
  z-index: 2;
}

.contact-method span {
  margin-bottom: 5px;
  color: rgba(255,255,255,0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-method strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 720;
  letter-spacing: -0.025em;
}

/* RIGHT VISUAL */

.contact-visual-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    radial-gradient(circle at 70% 22%, rgba(255,255,255,0.14), transparent 26%),
    radial-gradient(circle at 20% 86%, rgba(0,122,255,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 24px 90px rgba(0,0,0,0.2);
}

.contact-art-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  animation: contactVisualGrid 18s linear infinite;
}

.contact-art-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  pointer-events: none;
}

.glow-one {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
  background: rgba(0,122,255,0.22);
  animation: contactGlowOne 8s ease-in-out infinite;
}

.glow-two {
  width: 230px;
  height: 230px;
  right: -80px;
  top: -80px;
  background: rgba(255,255,255,0.16);
  animation: contactGlowTwo 9s ease-in-out infinite;
}

.contact-device {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82%, 430px);
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  box-shadow:
    0 36px 100px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.16);
  animation: contactDeviceFloat 7s cubic-bezier(.2,.8,.2,1) infinite;
}

.device-top {
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}

.device-top i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
}

.device-top span {
  margin-left: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 700;
}

.device-screen {
  position: relative;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.mail-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.mail-card::after {
  content: "";
  position: absolute;
  inset: -80%;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255,255,255,0.15) 49%,
      transparent 62%
    );
  animation: mailSweep 4.6s ease-in-out infinite;
}

.mail-card span,
.mail-card strong {
  position: relative;
  z-index: 2;
  display: block;
}

.mail-card span {
  color: rgba(255,255,255,0.44);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mail-card strong {
  margin-top: 6px;
  color: white;
  font-size: 12.5px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.mail-two {
  width: 78%;
  margin-left: auto;
}

.mail-three {
  width: 88%;
}

.signal-bars {
  height: 36px;
  display: flex;
  align-items: end;
  gap: 5px;
  justify-content: flex-end;
}

.signal-bars i {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(255,255,255,0.18), rgba(255,255,255,0.85));
  animation: contactSignal 1.3s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(1) { height: 28%; }
.signal-bars i:nth-child(2) { height: 54%; animation-delay: 0.1s; }
.signal-bars i:nth-child(3) { height: 82%; animation-delay: 0.2s; }
.signal-bars i:nth-child(4) { height: 46%; animation-delay: 0.3s; }
.signal-bars i:nth-child(5) { height: 68%; animation-delay: 0.4s; }

.floating-contact-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
  animation: contactChipFloat 5s ease-in-out infinite;
}

.floating-contact-chip span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34c759;
  box-shadow: 0 0 14px rgba(52,199,89,0.45);
}

.floating-contact-chip p {
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  font-weight: 760;
}

.chip-a {
  left: 34px;
  top: 54px;
}

.chip-b {
  right: 34px;
  bottom: 48px;
  animation-delay: 0.8s;
}

/* animations */

@keyframes contactDotPulse {
  0%, 100% { transform: scale(0.86); opacity: 0.7; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes contactMethodSweep {
  from { transform: translateX(-60%); }
  to { transform: translateX(60%); }
}

@keyframes contactVisualGrid {
  from { background-position: 0 0; }
  to { background-position: 46px 46px; }
}

@keyframes contactGlowOne {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.72; }
  50% { transform: translate(22px,-18px) scale(1.08); opacity: 1; }
}

@keyframes contactGlowTwo {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.48; }
  50% { transform: translate(-18px,22px) scale(1.08); opacity: 0.86; }
}

@keyframes contactDeviceFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes mailSweep {
  0%, 100% {
    transform: translateX(-35%);
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  65% {
    transform: translateX(35%);
    opacity: 0;
  }
}

@keyframes contactSignal {
  from { transform: scaleY(0.7); opacity: 0.56; }
  to { transform: scaleY(1.15); opacity: 1; }
}

@keyframes contactChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* responsive */

@media (max-width: 1000px) {
  .contact-visual-shell {
    grid-template-columns: 1fr;
  }

  .contact-visual-copy {
    padding: 38px 28px 10px;
  }

  .contact-visual-art {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .contact-visual-section {
    padding: 34px 14px 76px !important;
  }

  .contact-visual-shell {
    padding: 10px;
    border-radius: 30px;
  }

  .contact-visual-copy {
    padding: 28px 18px 8px;
  }

  .contact-visual-copy h2 {
    font-size: 25px;
  }

  .contact-visual-copy p {
    font-size: 13px;
  }

  .contact-methods {
    max-width: 100%;
  }

  .contact-method {
    min-height: 58px;
    border-radius: 19px;
  }

  .contact-visual-art {
    min-height: 320px;
    border-radius: 24px;
  }

  .contact-device {
    width: 88%;
    border-radius: 24px;
  }

  .device-screen {
    padding: 14px;
  }

  .mail-card {
    padding: 12px;
    border-radius: 17px;
  }

  .mail-card strong {
    font-size: 11.5px;
  }

  .floating-contact-chip {
    display: none;
  }
}





































/* =========================================================
   IRCE23 CONTACT EDITOR VISUAL
   Fully renamed classes to avoid affecting other sections
========================================================= */

#irce23-contact-editor-visual,
#irce23-contact-editor-visual * {
  box-sizing: border-box;
}

.irce23-editor-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 72% 16%, rgba(255,255,255,0.16), transparent 24%),
    radial-gradient(circle at 16% 88%, rgba(0,122,255,0.28), transparent 35%),
    radial-gradient(circle at 92% 90%, rgba(124,58,237,0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.13),
    inset 0 -140px 170px rgba(0,0,0,0.27),
    0 40px 140px rgba(0,0,0,0.35);
  isolation: isolate;
  perspective: 1900px;
}

/* atmosphere */

.irce23-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 78%);
  animation: irce23GridMove 20s linear infinite;
}

.irce23-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background-image: radial-gradient(rgba(255,255,255,0.55) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
  animation: irce23NoiseMove 1.2s steps(3) infinite;
}

.irce23-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(62px);
  pointer-events: none;
}

.irce23-bg-glow-blue {
  width: 360px;
  height: 360px;
  left: -130px;
  bottom: -130px;
  background: rgba(0,122,255,0.32);
  animation: irce23GlowBlue 8s cubic-bezier(.2,.8,.2,1) infinite;
}

.irce23-bg-glow-white {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  background: rgba(255,255,255,0.18);
  animation: irce23GlowWhite 9s cubic-bezier(.2,.8,.2,1) infinite;
}

.irce23-light-sweep {
  position: absolute;
  inset: -70%;
  background:
    linear-gradient(
      115deg,
      transparent 39%,
      rgba(255,255,255,0.22) 49%,
      transparent 60%
    );
  opacity: 0;
  animation: irce23LightSweep 7s ease-in-out infinite;
}

/* main window */

.irce23-editor-window {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(91%, 680px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07));
  backdrop-filter: blur(36px) saturate(185%);
  -webkit-backdrop-filter: blur(36px) saturate(185%);
  box-shadow:
    0 44px 130px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.17);
  transform: translate(-50%, -50%) rotateX(7deg) rotateY(-7deg);
  animation: irce23WindowFloat 7s cubic-bezier(.2,.8,.2,1) infinite;
}

.irce23-editor-window::before {
  content: "";
  position: absolute;
  inset: -90%;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(255,255,255,0.19) 49%,
      transparent 58%
    );
  animation: irce23WindowShine 5.8s ease-in-out infinite;
}

.irce23-topbar {
  position: relative;
  z-index: 3;
  height: 42px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.055);
}

.irce23-window-dots {
  display: flex;
  gap: 6px;
}

.irce23-window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}

.irce23-project-title span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  font-weight: 740;
}

.irce23-project-title strong {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.38);
  font-size: 8px;
  font-weight: 700;
}

.irce23-status-pills {
  display: flex;
  gap: 5px;
}

.irce23-status-pills span {
  padding: 4px 6px;
  border-radius: 999px;
  color: rgba(255,255,255,0.56);
  background: rgba(255,255,255,0.07);
  font-size: 7.5px;
  font-weight: 800;
}

.irce23-menu-strip {
  position: relative;
  z-index: 3;
  height: 28px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* workspace */

.irce23-workspace {
  position: relative;
  z-index: 3;
  padding: 12px;
  display: grid;
  grid-template-columns: 118px 1fr 124px;
  gap: 10px;
}

.irce23-media-bin,
.irce23-inspector,
.irce23-preview-viewer,
.irce23-control-deck,
.irce23-timeline-panel,
.irce23-inspector-module,
.irce23-float-panel {
  border: 1px solid rgba(255,255,255,0.105);
  background: rgba(255,255,255,0.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.irce23-media-bin {
  min-height: 258px;
  padding: 10px;
  border-radius: 22px;
}

.irce23-panel-title span,
.irce23-module-head span,
.irce23-float-panel > span {
  display: block;
  color: rgba(255,255,255,0.42);
  font-size: 7.5px;
  font-weight: 830;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.irce23-panel-title strong {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.82);
  font-size: 10px;
  font-weight: 730;
}

.irce23-search-bar {
  height: 20px;
  margin-top: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.irce23-asset-list {
  margin-top: 11px;
  display: grid;
  gap: 7px;
}

.irce23-asset-list div {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 6px;
}

.irce23-asset-list i {
  width: 15px;
  height: 12px;
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  animation: irce23AssetBlink 3s ease-in-out infinite;
}

.irce23-asset-list span {
  color: rgba(255,255,255,0.5);
  font-size: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.irce23-thumbnail-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.irce23-thumbnail-grid i {
  height: 34px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}

/* viewer */

.irce23-center-area {
  display: grid;
  gap: 8px;
}

.irce23-preview-viewer {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 20%, rgba(255,255,255,0.12), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(0,122,255,0.18), transparent 32%),
    linear-gradient(145deg, #070708, #1a1a1f);
}

.irce23-viewer-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: irce23ViewerGridMove 14s linear infinite;
}

.irce23-viewer-scan {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.14) 0,
      rgba(255,255,255,0.14) 1px,
      transparent 1px,
      transparent 7px
    );
  animation: irce23ViewerScanMove 5.5s linear infinite;
}

.irce23-viewer-light {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  filter: blur(24px);
  animation: irce23ViewerLightFloat 6s ease-in-out infinite;
}

.irce23-safe-guide {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
}

.irce23-safe-guide-one {
  inset: 18px 24px;
}

.irce23-safe-guide-two {
  inset: 34px 48px;
}

.irce23-viewer-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(255,255,255,0.25);
}

.irce23-corner-tl {
  top: 14px;
  left: 14px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.irce23-corner-tr {
  top: 14px;
  right: 14px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.irce23-corner-bl {
  bottom: 14px;
  left: 14px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.irce23-corner-br {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.irce23-timecode {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255,255,255,0.56);
  font-size: 8.5px;
  font-weight: 780;
}

.irce23-preview-title {
  position: absolute;
  left: 18px;
  bottom: 34px;
}

.irce23-preview-title span {
  display: block;
  color: rgba(255,255,255,0.44);
  font-size: 8px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.irce23-preview-title strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 17px;
  line-height: 1.04;
  font-weight: 730;
  letter-spacing: -0.055em;
}

.irce23-caption-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}

.irce23-caption-strip span {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 7.5px;
  line-height: 16px;
  white-space: nowrap;
  animation: irce23SubtitleMove 8s linear infinite;
}

.irce23-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.irce23-play-button::before,
.irce23-play-button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.12);
  animation: irce23PlayRing 2.2s ease-out infinite;
}

.irce23-play-button::after {
  animation-delay: 1.1s;
}

.irce23-play-button i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid rgba(255,255,255,0.95);
}

/* controls */

.irce23-control-deck {
  height: 34px;
  padding: 8px;
  border-radius: 17px;
  display: grid;
  grid-template-columns: 86px 1fr 70px;
  gap: 9px;
  align-items: center;
}

.irce23-transport-controls {
  display: flex;
  gap: 5px;
}

.irce23-transport-controls i {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
}

.irce23-scrub-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.irce23-scrub-track i {
  display: block;
  height: 100%;
  width: 54%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #007aff);
  animation: irce23ScrubMove 4.5s ease-in-out infinite;
}

.irce23-mini-levels {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 4px;
}

.irce23-mini-levels i {
  width: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  animation: irce23MiniLevelsMove 1s ease-in-out infinite alternate;
}

.irce23-mini-levels i:nth-child(1) { height: 8px; }
.irce23-mini-levels i:nth-child(2) { height: 16px; animation-delay: .1s; }
.irce23-mini-levels i:nth-child(3) { height: 11px; animation-delay: .2s; }
.irce23-mini-levels i:nth-child(4) { height: 18px; animation-delay: .3s; }
.irce23-mini-levels i:nth-child(5) { height: 9px; animation-delay: .4s; }

/* inspector */

.irce23-inspector {
  padding: 8px;
  border-radius: 22px;
  display: grid;
  gap: 8px;
}

.irce23-inspector-module {
  min-height: 56px;
  padding: 9px;
  border-radius: 16px;
}

.irce23-module-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.irce23-module-head strong {
  color: rgba(255,255,255,0.54);
  font-size: 7.5px;
  font-weight: 760;
}

.irce23-transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.irce23-transform-grid i {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.irce23-color-wheels {
  display: flex;
  gap: 6px;
}

.irce23-color-wheels i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 90deg,
      rgba(0,122,255,0.7),
      rgba(52,199,89,0.5),
      rgba(124,58,237,0.5),
      rgba(255,255,255,0.6),
      rgba(0,122,255,0.7)
    );
  animation: irce23ColorWheelSpin 8s linear infinite;
}

.irce23-audio-mixer {
  height: 30px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.irce23-audio-mixer i {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(0,122,255,0.22), rgba(255,255,255,0.86));
  animation: irce23MixerMove 1s ease-in-out infinite alternate;
}

.irce23-audio-mixer i:nth-child(1) { height: 24%; }
.irce23-audio-mixer i:nth-child(2) { height: 72%; animation-delay: .1s; }
.irce23-audio-mixer i:nth-child(3) { height: 42%; animation-delay: .2s; }
.irce23-audio-mixer i:nth-child(4) { height: 92%; animation-delay: .3s; }
.irce23-audio-mixer i:nth-child(5) { height: 58%; animation-delay: .4s; }
.irce23-audio-mixer i:nth-child(6) { height: 34%; animation-delay: .5s; }

.irce23-render-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.irce23-render-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #007aff, #34c759);
  animation: irce23RenderLoad 3s ease-in-out infinite;
}

/* timeline */

.irce23-timeline-panel {
  position: relative;
  z-index: 3;
  margin: 0 12px 12px;
  padding: 10px;
  border-radius: 22px;
}

.irce23-ruler {
  height: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: rgba(255,255,255,0.36);
  font-size: 7px;
  font-weight: 800;
}

.irce23-timeline-stack {
  position: relative;
  display: grid;
  gap: 6px;
}

.irce23-playhead {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 8%;
  z-index: 8;
  width: 1px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 18px rgba(255,255,255,0.35);
  animation: irce23PlayheadMove 5.2s linear infinite;
}

.irce23-playhead::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
}

.irce23-track-row {
  height: 11px;
  display: grid;
  grid-template-columns: 20px repeat(5, 1fr);
  gap: 5px;
  align-items: center;
}

.irce23-track-row b,
.irce23-marker-row b {
  color: rgba(255,255,255,0.32);
  font-size: 7px;
  font-weight: 850;
}

.irce23-edit-clip {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
}

.irce23-edit-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), transparent);
  transform: translateX(-120%);
  animation: irce23ClipShimmer 3.1s ease-in-out infinite;
}

.irce23-clip-a { background: linear-gradient(90deg, #d7d7dc, #fff); }
.irce23-clip-b { background: linear-gradient(90deg, #007aff, #c7d2fe); }
.irce23-clip-c { background: linear-gradient(90deg, #555, #aaa); }
.irce23-clip-d { background: linear-gradient(90deg, #34c759, #d1fae5); }
.irce23-clip-e { background: linear-gradient(90deg, #fff, #a1a1a6); }
.irce23-clip-f { grid-column: 2 / 4; background: linear-gradient(90deg, #34c759, #d1fae5); }
.irce23-clip-g { background: linear-gradient(90deg, #aaa, #fff); }
.irce23-clip-h { background: linear-gradient(90deg, #007aff, #dbeafe); }
.irce23-clip-i { background: linear-gradient(90deg, #fff, #aaa); }
.irce23-clip-j { grid-column: 3 / 5; background: linear-gradient(90deg, #007aff, #dbeafe); }
.irce23-clip-k { background: linear-gradient(90deg, #34c759, #dcfce7); }

.irce23-audio-track-row {
  grid-template-columns: 20px 1fr;
}

.irce23-waveform {
  height: 20px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.irce23-waveform i {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(0,122,255,0.28), rgba(255,255,255,0.9));
  animation: irce23WaveformMove 1.1s ease-in-out infinite alternate;
}

.irce23-waveform i:nth-child(1) { height: 24%; }
.irce23-waveform i:nth-child(2) { height: 56%; animation-delay: .08s; }
.irce23-waveform i:nth-child(3) { height: 88%; animation-delay: .16s; }
.irce23-waveform i:nth-child(4) { height: 44%; animation-delay: .24s; }
.irce23-waveform i:nth-child(5) { height: 76%; animation-delay: .32s; }
.irce23-waveform i:nth-child(6) { height: 34%; animation-delay: .40s; }
.irce23-waveform i:nth-child(7) { height: 68%; animation-delay: .48s; }
.irce23-waveform i:nth-child(8) { height: 42%; animation-delay: .56s; }
.irce23-waveform i:nth-child(9) { height: 84%; animation-delay: .64s; }
.irce23-waveform i:nth-child(10) { height: 38%; animation-delay: .72s; }
.irce23-waveform i:nth-child(11) { height: 60%; animation-delay: .80s; }
.irce23-waveform i:nth-child(12) { height: 28%; animation-delay: .88s; }

.irce23-marker-row {
  grid-template-columns: 20px repeat(5, 1fr);
}

.irce23-marker-row em {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
  animation: irce23MarkerPulse 2s ease-in-out infinite;
}

/* floating panels */

.irce23-float-panel {
  position: absolute;
  z-index: 9;
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}

.irce23-scopes-panel {
  right: 28px;
  bottom: 122px;
  width: 112px;
  padding: 10px;
  transform: rotate(7deg);
  animation: irce23ScopesFloat 8s ease-in-out infinite;
}

.irce23-scopes-panel div {
  height: 52px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.irce23-scopes-panel div i {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(52,199,89,0.26), rgba(255,255,255,0.86));
  animation: irce23ScopeMove 1.3s ease-in-out infinite alternate;
}

.irce23-scopes-panel div i:nth-child(1) { height: 24%; }
.irce23-scopes-panel div i:nth-child(2) { height: 64%; animation-delay: .1s; }
.irce23-scopes-panel div i:nth-child(3) { height: 42%; animation-delay: .2s; }
.irce23-scopes-panel div i:nth-child(4) { height: 84%; animation-delay: .3s; }
.irce23-scopes-panel div i:nth-child(5) { height: 56%; animation-delay: .4s; }
.irce23-scopes-panel div i:nth-child(6) { height: 72%; animation-delay: .5s; }
.irce23-scopes-panel div i:nth-child(7) { height: 36%; animation-delay: .6s; }

.irce23-keyframes-panel {
  left: 30px;
  top: 116px;
  width: 126px;
  padding: 10px;
  transform: rotate(-8deg);
  animation: irce23KeyframesFloat 7s ease-in-out infinite;
}

.irce23-keyframes-panel div {
  position: relative;
  height: 30px;
  margin-top: 9px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.irce23-keyframes-panel div i {
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  transform: rotate(45deg);
}

.irce23-keyframes-panel div i:nth-child(1) { left: 8%; }
.irce23-keyframes-panel div i:nth-child(2) { left: 38%; }
.irce23-keyframes-panel div i:nth-child(3) { left: 64%; }
.irce23-keyframes-panel div i:nth-child(4) { left: 88%; }

.irce23-render-toast {
  left: 34px;
  bottom: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  animation: irce23ToastFloat 6s ease-in-out infinite;
}

.irce23-render-toast > i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34c759;
  box-shadow: 0 0 14px rgba(52,199,89,0.45);
}

.irce23-render-toast strong {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 10px;
  font-weight: 760;
}

.irce23-render-toast small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.42);
  font-size: 8px;
}

.irce23-notes-panel {
  right: 44px;
  top: 50px;
  width: 156px;
  padding: 11px;
  transform: rotate(5deg);
  animation: irce23NotesFloat 7s ease-in-out infinite;
}

.irce23-notes-panel strong {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.84);
  font-size: 9.5px;
  line-height: 1.35;
}

.irce23-cursor {
  position: absolute;
  z-index: 12;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.08),
    0 0 22px rgba(255,255,255,0.42);
  animation: irce23CursorTravel 8s cubic-bezier(.2,.8,.2,1) infinite;
}

/* animations */

@keyframes irce23GridMove {
  from { background-position: 0 0; }
  to { background-position: 32px 32px; }
}

@keyframes irce23NoiseMove {
  0% { transform: translate(0,0); }
  33% { transform: translate(-1px,1px); }
  66% { transform: translate(1px,-1px); }
  100% { transform: translate(0,0); }
}

@keyframes irce23GlowBlue {
  0%,100% { transform: translate(0,0) scale(1); opacity:.72; }
  50% { transform: translate(26px,-20px) scale(1.12); opacity:1; }
}

@keyframes irce23GlowWhite {
  0%,100% { transform: translate(0,0) scale(1); opacity:.48; }
  50% { transform: translate(-24px,24px) scale(1.1); opacity:.86; }
}

@keyframes irce23LightSweep {
  0%,100% { transform: translateX(-34%); opacity:0; }
  42% { opacity:.72; }
  62% { transform: translateX(28%); opacity:0; }
}

@keyframes irce23WindowFloat {
  0%,100% {
    transform: translate(-50%, -50%) rotateX(7deg) rotateY(-7deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(5deg) rotateY(-4deg) translateY(-12px);
  }
}

@keyframes irce23WindowShine {
  0%,100% { transform: translateX(-35%); opacity:0; }
  45% { opacity:.85; }
  66% { transform: translateX(35%); opacity:0; }
}

@keyframes irce23AssetBlink {
  0%,100% { opacity:.52; }
  50% { opacity:1; }
}

@keyframes irce23ViewerGridMove {
  from { background-position: 0 0; }
  to { background-position: 32px 32px; }
}

@keyframes irce23ViewerScanMove {
  from { transform: translateY(0); }
  to { transform: translateY(42px); }
}

@keyframes irce23ViewerLightFloat {
  0%,100% { transform: translate(0,0); opacity:.55; }
  50% { transform: translate(-18px,18px); opacity:1; }
}

@keyframes irce23SubtitleMove {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@keyframes irce23PlayRing {
  0% { transform: scale(.82); opacity:.6; }
  100% { transform: scale(1.45); opacity:0; }
}

@keyframes irce23ScrubMove {
  0%,100% { width: 20%; }
  50% { width: 78%; }
}

@keyframes irce23MiniLevelsMove {
  from { transform: scaleY(.6); opacity:.55; }
  to { transform: scaleY(1.15); opacity:1; }
}

@keyframes irce23ColorWheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes irce23MixerMove {
  from { transform: scaleY(.62); opacity:.55; }
  to { transform: scaleY(1.16); opacity:1; }
}

@keyframes irce23RenderLoad {
  0%,100% { width: 38%; }
  50% { width: 94%; }
}

@keyframes irce23PlayheadMove {
  from { left: 8%; }
  to { left: 92%; }
}

@keyframes irce23ClipShimmer {
  0%,100% { transform: translateX(-120%); opacity:0; }
  45% { opacity:1; }
  68% { transform: translateX(120%); opacity:0; }
}

@keyframes irce23WaveformMove {
  from { transform: scaleY(.62); opacity:.55; }
  to { transform: scaleY(1.16); opacity:1; }
}

@keyframes irce23MarkerPulse {
  0%,100% { transform: rotate(45deg) scale(.82); opacity:.58; }
  50% { transform: rotate(45deg) scale(1.15); opacity:1; }
}

@keyframes irce23ScopesFloat {
  0%,100% { transform: rotate(7deg) translateY(0); opacity:.72; }
  50% { transform: rotate(4deg) translateY(10px); opacity:1; }
}

@keyframes irce23ScopeMove {
  from { transform: scaleY(.62); opacity:.58; }
  to { transform: scaleY(1.15); opacity:1; }
}

@keyframes irce23KeyframesFloat {
  0%,100% { transform: rotate(-8deg) translateY(0); opacity:.72; }
  50% { transform: rotate(-5deg) translateY(-9px); opacity:1; }
}

@keyframes irce23ToastFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(10px,-10px); }
}

@keyframes irce23NotesFloat {
  0%,100% { transform: rotate(5deg) translateY(0); opacity:.76; }
  50% { transform: rotate(2deg) translateY(-10px); opacity:1; }
}

@keyframes irce23CursorTravel {
  0% { left: 20%; top: 24%; opacity: 0; }
  10% { opacity: 1; }
  35% { left: 62%; top: 34%; }
  58% { left: 46%; top: 68%; }
  82% { left: 78%; top: 54%; opacity: 1; }
  100% { left: 78%; top: 54%; opacity: 0; }
}

/* responsive */

@media (max-width: 1100px) {
  .irce23-editor-visual {
    min-height: 540px;
  }

  .irce23-editor-window {
    width: min(94%, 680px);
  }
}

@media (max-width: 820px) {
  .irce23-editor-visual {
    min-height: 500px;
    border-radius: 30px;
  }

  .irce23-editor-window {
    width: 94%;
    border-radius: 28px;
  }

  .irce23-workspace {
    grid-template-columns: 1fr;
  }

  .irce23-media-bin,
  .irce23-inspector,
  .irce23-status-pills,
  .irce23-menu-strip,
  .irce23-scopes-panel,
  .irce23-keyframes-panel,
  .irce23-notes-panel {
    display: none;
  }

  .irce23-preview-viewer {
    min-height: 210px;
  }

  .irce23-control-deck {
    grid-template-columns: 82px 1fr 64px;
  }

  .irce23-ruler {
    display: none;
  }

  .irce23-render-toast {
    left: 18px;
    bottom: 24px;
  }
}

@media (max-width: 560px) {
  .irce23-editor-visual {
    min-height: 420px;
    border-radius: 24px;
  }

  .irce23-editor-window {
    width: 94%;
    border-radius: 24px;
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
  }

  .irce23-topbar {
    grid-template-columns: 48px 1fr;
    height: 38px;
  }

  .irce23-project-title strong {
    display: none;
  }

  .irce23-preview-viewer {
    min-height: 165px;
    border-radius: 18px;
  }

  .irce23-preview-title strong {
    font-size: 14px;
  }

  .irce23-play-button {
    width: 38px;
    height: 38px;
  }

  .irce23-control-deck {
    display: none;
  }

  .irce23-track-row {
    grid-template-columns: 18px repeat(5, 1fr);
  }

  .irce23-audio-track-row,
  .irce23-marker-row {
    display: none;
  }

  .irce23-render-toast,
  .irce23-cursor {
    display: none;
  }
}

@media (max-width: 390px) {
  .irce23-editor-visual {
    min-height: 360px;
  }

  .irce23-preview-viewer {
    min-height: 140px;
  }

  .irce23-preview-title,
  .irce23-caption-strip {
    display: none;
  }

  .irce23-timeline-panel {
    padding: 8px;
    border-radius: 18px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  #irce23-contact-editor-visual *,
  #irce23-contact-editor-visual *::before,
  #irce23-contact-editor-visual *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}



















/* =========================================================
   IRF27 — SMALL PREMIUM APPLE-STYLE FOOTER
========================================================= */

.irf27-footer {
  position: relative;
  padding: 26px 20px 18px;
}

.irf27-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.14),
    rgba(0, 0, 0, 0.08),
    transparent
  );
}

.irf27-footer-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.irf27-footer-left {
  min-width: 0;
}

.irf27-brand {
  display: inline-block;
  text-decoration: none;
  color: #0f0f10;
  font-size: 13px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.irf27-copy {
  margin-top: 6px;
  color: #7a7a82;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 520;
}

.irf27-footer-middle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.irf27-contact-link,
.irf27-book-link {
  position: relative;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.irf27-contact-link {
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.irf27-book-link {
  color: #fff;
  background: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.irf27-contact-link:hover,
.irf27-book-link:hover,
.irf27-social:hover {
  transform: translateY(-1px);
}

.irf27-footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.irf27-social {
  position: relative;
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.irf27-social svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex: 0 0 auto;
}

.irf27-social span {
  font-size: 9.5px;
  font-weight: 620;
  white-space: nowrap;
}

.irf27-contact-link:hover,
.irf27-social:hover {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.irf27-book-link:hover {
  background: #1a1a1d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.irf27-footer-bottom {
  width: min(100%, 1180px);
  margin: 10px auto 0;
  padding: 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #8a8a92;
  font-size: 9px;
  font-weight: 560;
}

/* tablet */
@media (max-width: 980px) {
  .irf27-footer-shell {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .irf27-footer-middle {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .irf27-footer-right {
    flex-wrap: wrap;
  }
}

/* mobile */
@media (max-width: 560px) {
  .irf27-footer {
    padding: 20px 14px 16px;
  }

  .irf27-footer-shell {
    padding: 12px;
    border-radius: 18px;
    gap: 12px;
  }

  .irf27-brand {
    font-size: 12px;
  }

  .irf27-copy {
    font-size: 9.5px;
    max-width: 220px;
  }

  .irf27-footer-middle {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }

  .irf27-contact-link,
  .irf27-book-link {
    width: 100%;
    height: 36px;
    font-size: 10px;
  }

  .irf27-footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .irf27-social {
    width: 100%;
    height: 36px;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .irf27-social span {
    font-size: 9.5px;
  }

  .irf27-footer-bottom {
    margin-top: 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 8.8px;
  }
}

/* very small mobile */
@media (max-width: 360px) {
  .irf27-footer-right {
    grid-template-columns: 1fr;
  }
}