:root {
  --bg-deep: #050608;
  --bg-card: #0d0f14;
  --bg-elevated: #141820;
  --bg-glass: rgba(20, 24, 32, 0.55);
  --text-primary: #f4f5f9;
  --text-muted: #8a91a3;
  --accent-cyan: #2ee8d6;
  --accent-violet: #b794ff;
  --accent-coral: #ff6b8a;
  --accent-gold: #f5c451;
  --gradient-brand: linear-gradient(125deg, var(--accent-cyan) 0%, var(--accent-violet) 48%, var(--accent-coral) 100%);
  --gradient-glow: radial-gradient(circle at 30% 30%, rgba(46, 232, 214, 0.35), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(183, 148, 255, 0.28), transparent 50%);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow-cyan: 0 0 40px rgba(46, 232, 214, 0.22);
  --shadow-glow-violet: 0 0 48px rgba(183, 148, 255, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

::selection {
  background: rgba(46, 232, 214, 0.25);
  color: var(--text-primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.header-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 232, 214, 0.4);
  color: var(--accent-cyan);
  box-shadow: inset 0 0 0 1px rgba(46, 232, 214, 0.08);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.header-cta:hover {
  background: rgba(46, 232, 214, 0.1);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 35%, rgba(46, 232, 214, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(183, 148, 255, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 75% 85%, rgba(255, 107, 138, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #07080c 0%, var(--bg-deep) 45%, #030405 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 45% 40%, black 15%, transparent 78%);
  opacity: 0.65;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orbFloat 18s var(--ease-out) infinite;
}

.hero-orb--cyan {
  width: 320px;
  height: 320px;
  left: -8%;
  top: 18%;
  background: rgba(46, 232, 214, 0.35);
  animation-delay: 0s;
}

.hero-orb--violet {
  width: 280px;
  height: 280px;
  right: 5%;
  top: 8%;
  background: rgba(183, 148, 255, 0.32);
  animation-delay: -4s;
}

.hero-orb--coral {
  width: 220px;
  height: 220px;
  right: 22%;
  bottom: 12%;
  background: rgba(255, 107, 138, 0.28);
  animation-delay: -8s;
}

.hero-orb--gold {
  width: 160px;
  height: 160px;
  left: 38%;
  bottom: 6%;
  background: rgba(245, 196, 81, 0.22);
  animation-delay: -12s;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 640px;
  animation: fadeUp 0.9s var(--ease-out) both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 24px rgba(46, 232, 214, 0.45);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(183, 148, 255, 0.35));
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-lead strong {
  color: var(--text-primary);
  font-weight: 500;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-pill svg {
  width: 18px;
  height: 18px;
  color: var(--accent-violet);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  background: var(--gradient-brand);
  color: #050608;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(46, 232, 214, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(46, 232, 214, 0.38), var(--shadow-glow-violet);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-audience {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.9s 0.15s var(--ease-out) both;
}

.hero-audience > span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-audience ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-audience li {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(183, 148, 255, 0.12);
  color: var(--accent-violet);
  border: 1px solid rgba(183, 148, 255, 0.22);
  box-shadow: 0 0 20px rgba(183, 148, 255, 0.12);
}

.hero-scene {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  animation: fadeUp 1s 0.1s var(--ease-out) both;
}

.hero-glass {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out);
  overflow: hidden;
}

.hero-glass__shine {
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
  animation: shineSweep 8s ease-in-out infinite;
}

.hero-glass__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glass__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: rgba(5, 6, 8, 0.65);
  border: 1px solid rgba(46, 232, 214, 0.35);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.hero-glass__stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  transform: translateZ(40px);
}

.hero-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(5, 6, 8, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-card--video {
  border-color: rgba(46, 232, 214, 0.25);
}

.hero-card--photo {
  transform: translateX(12px) translateZ(20px);
  border-color: rgba(183, 148, 255, 0.28);
}

.hero-card--audio {
  transform: translateX(24px) translateZ(8px);
  border-color: rgba(255, 107, 138, 0.28);
}

.hero-card__label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-card__bar {
  display: block;
  width: 88px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  box-shadow: 0 0 16px rgba(46, 232, 214, 0.45);
}

.hero-card--photo .hero-card__bar {
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-coral));
}

.hero-card__wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.hero-card__wave i {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--accent-coral);
  animation: waveBar 1.2s ease-in-out infinite;
}

.hero-card__wave i:nth-child(1) { height: 40%; animation-delay: 0s; }
.hero-card__wave i:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.hero-card__wave i:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.hero-card__wave i:nth-child(4) { height: 65%; animation-delay: 0.3s; }
.hero-card__wave i:nth-child(5) { height: 45%; animation-delay: 0.4s; }

.hero-glass__ring {
  position: absolute;
  width: 140%;
  aspect-ratio: 1;
  left: -20%;
  bottom: -55%;
  border-radius: 50%;
  border: 1px solid rgba(183, 148, 255, 0.15);
  box-shadow: 0 0 60px rgba(183, 148, 255, 0.12);
  pointer-events: none;
  transform: translateZ(-30px);
}

.services {
  position: relative;
  padding: 5.5rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 232, 214, 0.22);
  box-shadow: var(--shadow-soft), var(--shadow-glow-cyan);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background: rgba(46, 232, 214, 0.1);
  border: 1px solid rgba(46, 232, 214, 0.2);
  color: var(--accent-cyan);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.portfolio {
  padding: 6rem clamp(1.25rem, 4vw, 3rem) 5.5rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 232, 214, 0.28);
  box-shadow: var(--shadow-soft);
}

.portfolio-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}

.portfolio-thumb img,
.portfolio-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.portfolio-item:hover .portfolio-thumb img,
.portfolio-item:hover .portfolio-thumb video {
  transform: scale(1.05);
}

.portfolio-item--placeholder .portfolio-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(46, 232, 214, 0.07) 0%, rgba(183, 148, 255, 0.07) 100%), var(--bg-deep);
}

.placeholder-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.placeholder-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  opacity: 0.5;
}

.portfolio-info {
  padding: 1.15rem 1.25rem 1.35rem;
}

.portfolio-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.35rem;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.portfolio-empty {
  text-align: center;
  padding: 4.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.09);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 64px rgba(0, 0, 0, 0.35);
}

.portfolio-empty-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(46, 232, 214, 0.1) 0%, rgba(183, 148, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glow-violet);
}

.portfolio-empty-icon svg {
  width: 34px;
  height: 34px;
  color: var(--accent-violet);
}

.portfolio-empty h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.portfolio-empty p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto;
}

.portfolio-cta {
  margin-top: 3.5rem;
  text-align: center;
  padding: 2.75rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-secondary {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-cyan);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s, box-shadow 0.25s;
}

.btn-secondary:hover {
  background: rgba(46, 232, 214, 0.1);
  box-shadow: var(--shadow-glow-cyan);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.85rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #040506;
}

.logo--footer {
  font-size: 1rem;
}

.site-footer a:last-child {
  color: var(--accent-cyan);
  font-weight: 500;
  transition: opacity 0.2s;
}

.site-footer a:last-child:hover {
  opacity: 0.85;
}

.support-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #050608;
  box-shadow: 0 12px 36px rgba(46, 232, 214, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.support-fab svg {
  width: 26px;
  height: 26px;
}

.support-fab:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 16px 44px rgba(183, 148, 255, 0.35);
}

.support-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(46, 232, 214, 0.45);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.support-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 350;
  width: min(100%, 400px);
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 0.32s var(--ease-out);
}

.support-panel.is-open {
  transform: translateX(0);
}

.support-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.support-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.support-panel__brand h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.support-panel__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.support-panel__close svg {
  width: 18px;
  height: 18px;
}

.support-panel__close:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.support-panel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1rem 1.25rem 1.25rem;
}

.support-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-right: 0.25rem;
  margin-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.support-msg {
  max-width: 92%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  border: 1px solid rgba(255, 255, 255, 0.07);
  animation: msgIn 0.35s var(--ease-out) both;
}

.support-msg p {
  margin: 0;
}

.support-msg p + p {
  margin-top: 0.5rem;
}

.support-msg a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(183, 148, 255, 0.18);
}

.support-msg--user {
  align-self: flex-end;
  background: rgba(46, 232, 214, 0.12);
  border-color: rgba(46, 232, 214, 0.25);
  color: var(--text-primary);
}

.support-msg strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.support-quick {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.support-quick__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.support-quick__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.support-quick__btn {
  text-align: left;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.support-quick__btn:hover {
  border-color: rgba(46, 232, 214, 0.3);
  background: rgba(46, 232, 214, 0.08);
  box-shadow: 0 0 20px rgba(46, 232, 214, 0.12);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-16px, 12px) scale(0.96);
  }
}

@keyframes shineSweep {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-10%) rotate(12deg);
  }
  50% {
    opacity: 0.7;
    transform: translateX(15%) rotate(12deg);
  }
}

@keyframes waveBar {
  0%, 100% {
    transform: scaleY(0.65);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    order: 1;
    min-height: auto;
  }

  .hero-content {
    order: 0;
  }

  .hero-glass {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    padding: env(safe-area-inset-top, 0px) 1rem 0;
    min-height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    height: auto;
  }

  .logo span {
    font-size: 1rem;
  }

  .header-cta {
    font-size: 0.75rem;
    padding: 0.45rem 0.8rem;
    flex-shrink: 0;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    overflow-x: clip;
    overflow-y: visible;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.25rem)
      1rem
      2.5rem;
  }

  .hero-layout {
    gap: 1.25rem;
  }

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

  .hero h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.4rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-services {
    margin-bottom: 1.35rem;
  }

  .btn-primary,
  .request-email-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-scene {
    order: 1;
    min-height: auto;
    width: 100%;
    margin-top: 0.25rem;
    perspective: none;
  }

  .hero-content {
    order: 0;
  }

  .hero-glass {
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
    height: auto;
    padding: 0.85rem;
    transform: none !important;
  }

  .hero-glass__shine {
    opacity: 0.35;
  }

  .hero-glass__ring {
    display: none;
  }

  .hero-glass__badge {
    top: 0.6rem;
    right: 0.6rem;
    font-size: 0.55rem;
    padding: 0.25rem 0.4rem;
  }

  .hero-glass__stack {
    margin-top: 0;
    flex-direction: row;
    gap: 0.45rem;
    transform: none;
  }

  .hero-card {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.6rem 0.45rem;
    min-width: 0;
  }

  .hero-card--photo,
  .hero-card--audio {
    transform: none;
  }

  .hero-card__label {
    font-size: 0.7rem;
    text-align: center;
    width: 100%;
  }

  .hero-card__bar {
    width: 100%;
    max-width: none;
    height: 4px;
  }

  .hero-card__wave {
    height: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero-card__wave i {
    width: 3px;
  }

  .hero-audience {
    margin-top: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .services,
  .portfolio {
    padding: 3.25rem 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .section-desc {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .service-card,
  .portfolio-empty,
  .portfolio-cta {
    max-width: 100%;
  }

  .portfolio-empty {
    padding: 2rem 1.15rem;
  }

  .portfolio-cta {
    padding: 1.5rem 1rem;
  }

  .btn-secondary {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding:
      1rem 1rem
      calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .site-footer p {
    max-width: 100%;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .logo--footer {
    font-size: 0.92rem;
  }

  .logo--footer img {
    width: 24px;
    height: 24px;
  }

  .support-fab {
    right: calc(0.85rem + env(safe-area-inset-right, 0px));
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }

  .support-panel {
    width: 100%;
    max-width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .support-quick__grid {
    grid-template-columns: 1fr;
  }

  .support-quick__btn {
    white-space: normal;
    text-align: left;
    line-height: 1.45;
    padding: 0.75rem 0.85rem;
  }

  .support-msg {
    max-width: 100%;
  }

  .request-overlay {
    padding:
      calc(0.65rem + env(safe-area-inset-top, 0px))
      0.65rem
      calc(0.65rem + env(safe-area-inset-bottom, 0px));
    align-items: center;
  }

  .request-panel {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 1.25rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }

  .request-panel__body {
    padding: 1rem;
  }

  .request-panel__lead,
  .request-email-btn {
    font-size: 0.88rem;
  }

  .request-service__label {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .header-cta {
    font-size: 0.68rem;
    padding: 0.38rem 0.6rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .hero-glass {
    padding: 0.75rem;
  }

  .hero-card__label {
    font-size: 0.65rem;
  }

  .service-pill {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-glass {
    transition: none;
  }

  .support-panel {
    transition: none;
  }
}
button.btn-primary {
  font-family: var(--font-body);
  cursor: pointer;
}

body.request-open {
  overflow: hidden;
}

.request-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 5, 8, 0.72);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.request-overlay.is-open {
  display: grid;
  pointer-events: auto;
}

.request-panel {
  width: min(100%, 440px);
  max-height: min(90vh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(26, 29, 40, 0.98) 0%, rgba(14, 15, 20, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(45, 212, 191, 0.08) inset,
    0 0 48px rgba(45, 212, 191, 0.08);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.32s ease;
}

.request-overlay.is-open .request-panel {
  transform: translateY(0) scale(1);
}

.request-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.request-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.request-panel__brand h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.request-panel__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.request-panel__close svg {
  width: 18px;
  height: 18px;
}

.request-panel__close:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.request-panel__body {
  padding: 1.25rem;
  overflow-y: auto;
}

.request-panel__lead {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.request-services {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.request-service {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1rem;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.request-service:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.06);
}

.request-service.is-selected {
  border-color: rgba(45, 212, 191, 0.55);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12) 0%, rgba(167, 139, 250, 0.1) 100%);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.15);
}

.request-service__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.request-service__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

.request-service__label {
  font-size: 0.95rem;
  font-weight: 600;
}

.request-email-btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.request-email-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .request-overlay,
  .request-panel {
    transition: none;
  }
}