/* =========================
   W1CU PORTFOLIO — PROTOTYP
   ========================= */

:root {
  --bg: #030806;
  --bg-soft: #06100b;
  --card: rgba(7, 16, 11, .82);
  --card-strong: #06100a;
  --line: rgba(255,255,255,.09);
  --text: #f6f3fb;
  --muted: #8f8a98;
  --purple: #22c55e;
  --purple-2: #6ee7a2;
  --purple-dark: #0b4d2a;
  --max: 1220px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 8%, rgba(34, 197, 94, .08), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

::selection {
  background: rgba(34,197,94,.55);
  color: #fff;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 999;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 0 1px, transparent 1px);
  background-size: 24px 24px, 31px 31px;
}

.topbar {
  width: min(calc(100% - 36px), var(--max));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-mark {
  color: var(--purple-2);
  filter: drop-shadow(0 0 12px rgba(110,231,162,.55));
  font-size: 1.3rem;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #bcb7c4;
  font-size: .92rem;
}

.nav a { transition: .25s ease; }
.nav a:hover { color: #fff; }

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(110,231,162,.28);
  border-radius: 12px;
  background: rgba(34,197,94,.08);
}

.menu-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.4rem;
}

.section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
  position: relative;
}

.hero {
  min-height: 980px;
  padding-top: 80px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
  padding-top: 132px;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -88px -120px -75px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(3, 8, 6, .78) 0%, rgba(3, 8, 6, .45) 48%, transparent 75%);
  filter: blur(12px);
}


.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(110,231,162,.28);
  background: rgba(34,197,94,.10);
  color: #b9f6cf;
  font-size: .78rem;
  letter-spacing: .05em;
  box-shadow: inset 0 0 20px rgba(34,197,94,.08);
}

.eyebrow {
  color: #9a93a6;
  font-size: .8rem;
  letter-spacing: .22em;
  margin: 22px 0 0;
}

.hero h1 {
  margin: 10px 0 0;
  font-size: clamp(4.3rem, 13vw, 9.5rem);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 800;
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.hero-title-shine span {
  position: relative;
  z-index: 1;
  display: block;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #8d8895 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 60px rgba(34,197,94,.12);
}

.hero-title-shine::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 2;
  color: transparent;
  background: linear-gradient(118deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0) 48.7%,
      rgba(110,231,162,0) 49.2%,
      rgba(110,231,162,.18) 49.65%,
      rgba(250,255,252,.72) 50%,
      rgba(110,231,162,.26) 50.35%,
      rgba(110,231,162,0) 50.8%,
      rgba(255,255,255,0) 51.3%,
      rgba(255,255,255,0) 100%);
  background-size: 225% 100%;
  background-position: 170% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: heroDiagonalShine 3.0s linear infinite;
  filter: drop-shadow(0 0 4px rgba(110,231,162,.12)) drop-shadow(0 0 10px rgba(110,231,162,.08));
  pointer-events: none;
}


.hero-copy {
  max-width: 650px;
  margin: 24px auto 0;
  color: #aaa5b0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #15803d, #2dd66f);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15) inset,
    0 10px 35px rgba(34,197,94,.32);
}

.btn-secondary {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: #c7c3ca;
}

.scroll-hint {
  margin-top: 72px;
  color: #696470;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
}

.scroll-hint span {
  width: 32px;
  height: 1px;
  background: #4b4651;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
}

.hero-glow-1 {
  width: 520px;
  height: 300px;
  background: rgba(16, 185, 129, .20);
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-glow-2 {
  width: 240px;
  height: 240px;
  background: rgba(34, 197, 94, .12);
  top: 320px;
  left: 16%;
}


.orbit {
  position: absolute;
  width: 100%;
  height: 760px;
  top: 8px;
  left: 0;
  pointer-events: none;
}

.thumb {
  position: absolute;
  margin: 0;
  width: 124px;
  display: grid;
  justify-items: center;
  gap: 10px;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
}

.person-thumb .thumb-photo {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 55px rgba(0,0,0,.46), 0 0 26px rgba(34,197,94,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent),
    linear-gradient(135deg, #0d2416, #111016 60%, #0d4a28);
}

.person-thumb .thumb-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.18) 100%);
}

.person-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.person-thumb figcaption {
  min-width: 108px;
  max-width: 138px;
  text-align: center;
  padding: 8px 10px 9px;
  border-radius: 14px;
  background: rgba(8, 13, 10, .72);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.person-thumb strong {
  display: block;
  font-size: .68rem;
  line-height: 1.2;
  color: #f4fbf7;
  letter-spacing: .015em;
  font-weight: 700;
}

.person-thumb small {
  display: block;
  margin-top: 3px;
  font-size: .62rem;
  line-height: 1.2;
  color: #9cd9b2;
  letter-spacing: .02em;
}

.t1 { left: 2%; top: 418px; transform: rotate(-14deg); animation-delay: -.5s; }
.t2 { left: 10%; top: 282px; transform: rotate(-10deg); animation-delay: -2.2s; }
.t3 { left: 24%; top: 120px; transform: rotate(-6deg); animation-delay: -3.3s; }
.t4 { left: 44%; top: 12px; transform: rotate(-2deg); animation-delay: -1.6s; }
.t5 { right: 24%; top: 120px; transform: rotate(6deg); animation-delay: -4.1s; }
.t6 { right: 10%; top: 282px; transform: rotate(10deg); animation-delay: -2.8s; }
.t7 { right: 2%; top: 418px; transform: rotate(14deg); animation-delay: -1.4s; }

@keyframes float {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes shine {
  0%,70% { transform: translateX(-120%); }
  100% { transform: translateX(140%); }
}

  100% { transform: translateX(140%); }
}

.section-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.section-kicker {
  color: #55d98a;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .75rem;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(2.5rem, 5.3vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 0;
  font-weight: 600;
}

.muted {
  color: #8d8992;
  font-weight: 500;
}

.gradient-text {
  background: linear-gradient(90deg, #d1fae5, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-copy > p:not(.section-kicker) {
  color: var(--muted);
  max-width: 650px;
  font-size: 1.05rem;
}

.about-grid {
  align-items: start;
  gap: 84px;
}

.about-copy {
  padding-top: 8px;
}

.about-lead {
  margin-top: 28px;
  line-height: 1.6;
}

.about-feature {
  margin-top: 44px;
  max-width: 660px;
  padding: 30px 28px;
}

.feature-card,
.info-card,
.service-card,
.creator-card,
.stats-panel,
.contact-box,
.video-frame {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(34,197,94,.08), transparent 32%),
    linear-gradient(180deg, rgba(13,11,18,.98), rgba(6,6,8,.98));
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}

.feature-card {
  margin-top: 34px;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  gap: 20px;
}

.feature-icon,
.service-dot {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #15803d, #2dd66f);
  box-shadow: 0 0 24px rgba(34,197,94,.32);
}

.feature-card h3,
.info-card h3,
.service-card h3,
.creator-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.feature-card p,
.info-card p,
.service-card p,
.creator-card p,
.section-heading p,
.contact-box p {
  color: var(--muted);
  margin: 0;
}

.portrait-card {
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.08);
}

.portrait-placeholder {
  min-height: 560px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(34, 197, 94, .30), transparent 24%),
    linear-gradient(150deg, #0b1710 0%, #09090c 45%, #0a2a18 100%);
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
}

.portrait-placeholder::before {
  background:
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,.06) 50%, transparent 62%);
  transform: translateX(-30%);
}

.portrait-placeholder::after {
  background: radial-gradient(circle at 50% 100%, rgba(34,197,94,.25), transparent 35%);
}

.portrait-ring {
  width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 80px rgba(34,197,94,.18) inset, 0 0 55px rgba(34,197,94,.18);
}

.portrait-text {
  position: absolute;
  text-align: center;
  display: grid;
  gap: 2px;
}

.portrait-text span { color: #91899a; font-size: .74rem; letter-spacing: .22em; }
.portrait-text strong { font-size: 2.2rem; letter-spacing: -.03em; }
.portrait-text small { color: #6e6873; margin-top: 6px; }

.stats-panel {
  margin-top: 95px;
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-strip > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(34,197,94,.06);
}

.social-strip span { display: block; color: #928b99; font-size: .78rem; }
.social-strip strong { font-size: 1rem; }

.stats-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0 22px;
}

.workspace-shot {
  min-height: 280px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  letter-spacing: .14em;
  border: 1px solid rgba(255,255,255,.06);
}

.shot-a {
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent),
    radial-gradient(circle at 30% 20%, rgba(16,185,129,.22), transparent 25%),
    #101014;
}

.shot-b {
  background:
    linear-gradient(125deg, #082314, #08080b 60%),
    #111;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat strong {
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -.05em;
}

.stat span {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  margin-left: 5px;
}

.stat p {
  color: #77717d;
  margin: -4px 0 0;
}

.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px auto 0;
}

.creator-fan {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 220px;
  margin-bottom: 35px;
}

.creator-fan div {
  width: 120px;
  height: 155px;
  border-radius: 25px;
  margin-left: -20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 2px solid #131116;
  background: linear-gradient(145deg, #17141d, #155e35);
  box-shadow: 0 24px 45px rgba(0,0,0,.25);
}

.creator-fan div:nth-child(1) { transform: rotate(-14deg) translateY(14px); }
.creator-fan div:nth-child(2) { transform: rotate(-8deg); }
.creator-fan div:nth-child(3) { transform: rotate(-3deg) translateY(-8px); }
.creator-fan div:nth-child(4) { transform: rotate(4deg) translateY(-8px); }
.creator-fan div:nth-child(5) { transform: rotate(9deg); }
.creator-fan div:nth-child(6) { transform: rotate(14deg) translateY(14px); }

.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.creator-card {
  border-radius: 24px;
  padding: 22px;
}

.creator-avatar {
  aspect-ratio: 16/10;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: clamp(1.8rem, 4vw, 4rem);
  letter-spacing: -.05em;
  font-weight: 800;
  background:
    radial-gradient(circle at 70% 20%, rgba(110,231,162,.40), transparent 28%),
    linear-gradient(135deg, #1a171f, #0b0a0d);
  border: 1px solid rgba(255,255,255,.06);
}

.creator-avatar.alt {
  background:
    radial-gradient(circle at 30% 20%, rgba(34,197,94,.50), transparent 25%),
    linear-gradient(135deg, #0d0d10, #0d2416);
}

.creator-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.creator-meta .service-dot {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border-radius: 12px;
  font-size: .75rem;
}

.video-frame {
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 0 80px rgba(34,197,94,.20);
}

.video-placeholder {
  min-height: 610px;
  border-radius: 27px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(34,197,94,.30), transparent 22%),
    linear-gradient(135deg, #0d0d10, #1a0c2c 50%, #08080a);
  overflow: hidden;
}

.video-placeholder .play-button {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 5px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,.92);
  color: #111;
  box-shadow: 0 0 60px rgba(34,197,94,.40);
}

.video-placeholder strong { display: block; font-size: 1.3rem; }
.video-placeholder span { color: #837d89; font-size: .9rem; }

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.service-card {
  border-radius: 24px;
  padding: 32px;
  min-height: 260px;
}

.info-card .service-dot,
.service-card .service-dot { margin-bottom: 44px; }

.info-card h3,
.service-card h3 { font-size: 1.35rem; }

.service-card { min-height: 420px; }

.mock-ui {
  margin-top: 34px;
  min-height: 120px;
  border: 1px solid rgba(110,231,162,.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34,197,94,.14), rgba(34,197,94,.03));
  display: grid;
  place-items: center;
  text-align: center;
  color: #79b98e;
  padding: 18px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #8c8591;
  font-size: .78rem;
}

.waveform {
  margin-top: 62px;
  height: 74px;
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(34,197,94,.06);
}

.waveform i {
  display: block;
  width: 4px;
  border-radius: 99px;
  background: #86efac;
}

.waveform i:nth-child(1) { height: 18px; }
.waveform i:nth-child(2) { height: 34px; }
.waveform i:nth-child(3) { height: 24px; }
.waveform i:nth-child(4) { height: 45px; }
.waveform i:nth-child(5) { height: 30px; }
.waveform i:nth-child(6) { height: 52px; }
.waveform i:nth-child(7) { height: 28px; }
.waveform i:nth-child(8) { height: 39px; }
.waveform i:nth-child(9) { height: 21px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #08080a;
  transition: transform .3s ease, border-color .3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110,231,162,.28);
}

.project-thumb {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(110,231,162,.48), transparent 30%),
    linear-gradient(135deg, #0b2114, #0b0b0d);
}

.project-thumb span {
  width: 64px;
  height: 64px;
  padding-left: 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}

.p2 { background: radial-gradient(circle at 20% 30%, rgba(16,185,129,.42), transparent 30%), linear-gradient(135deg,#17171b,#08080b); }
.p3 { background: radial-gradient(circle at 70% 70%, rgba(147,51,234,.42), transparent 28%), linear-gradient(135deg,#101014,#0d2a18); }
.p4 { background: radial-gradient(circle at 30% 15%, rgba(34,197,94,.40), transparent 28%), linear-gradient(135deg,#0f0f12,#0b1d12); }

.project-info {
  padding: 20px 22px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.project-info small {
  color: #55d98a;
  font-size: .68rem;
  letter-spacing: .12em;
}

.project-info strong {
  font-size: 1rem;
  font-weight: 600;
}

.contact-box {
  border-radius: 32px;
  padding: 80px 25px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(34,197,94,.32), transparent 35%),
    linear-gradient(180deg, #0c351d, #0a0810 78%);
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(circle, rgba(255,255,255,.45) 0 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.contact-box > * { position: relative; z-index: 2; }

.contact-box h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  margin-top: 22px;
}

.contact-box p {
  margin: 22px auto 30px;
  max-width: 620px;
}

.contact-box .btn {
  margin-top: 18px;
}

footer {
  width: min(calc(100% - 36px), var(--max));
  min-height: 115px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #74707a;
  font-size: .82rem;
}

footer > a { justify-self: end; }
footer .brand { color: #cfcbd4; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {

  .about-grid { gap: 34px; }
  .about-portrait {
    justify-self: stretch;
    max-width: none;
  }
  .portrait-image {
    min-height: 420px;
    max-height: 620px;
  }
  .section { padding: 82px 0; }
  .hero { min-height: 760px; }

  .section-grid,
  .creator-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .section-grid { gap: 38px; }
  .portrait-placeholder { min-height: 430px; }

  .stats {
    gap: 8px;
  }

  .stat strong { font-size: 2.4rem; }
  .stat span { font-size: 1.7rem; }

  .video-placeholder { min-height: 440px; }

  .service-card { min-height: unset; }

  .info-card .service-dot,
  .service-card .service-dot { margin-bottom: 30px; }

  .orbit { opacity: .88; transform: scale(.92); }
  .hero-content { padding-top: 122px; }
}

@media (max-width: 760px) {

  .about-copy { padding-top: 0; }
  .about-feature { margin-top: 26px; padding: 24px 20px; }
  .portrait-image {
    min-height: 360px;
    max-height: 500px;
    object-position: center 18%;
  }
  .topbar { height: 68px; }

  .nav {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8,8,10,.95);
    backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .nav.open { display: flex; }
  .menu-btn { display: block; }

  .section { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: 930px; padding-top: 28px; }

  .hero-content { padding-top: 190px; }

  .orbit {
    height: 740px;
    top: 42px;
    opacity: .92;
    transform: scale(.84);
  }

  .thumb {
    width: 118px;
    gap: 8px;
  }

  .person-thumb .thumb-photo {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .person-thumb figcaption {
    min-width: 98px;
    max-width: 112px;
    padding: 7px 8px 8px;
  }

  .person-thumb strong { font-size: .60rem; }
  .person-thumb small { font-size: .55rem; }

  .t1 { left: -10%; top: 440px; }
  .t2 { left: -2%; top: 300px; }
  .t3 { left: 10%; top: 160px; }
  .t4 { left: 34%; top: 28px; }
  .t5 { right: 10%; top: 160px; }
  .t6 { right: -2%; top: 300px; }
  .t7 { right: -10%; top: 440px; }

  .hero-copy { max-width: 92%; }

  .social-strip,
  .stats-visual,
  .stats,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel { padding: 18px; }
  .stats { margin-top: 30px; gap: 26px; }
  .stat p { margin-top: 0; }

  .creator-fan {
    height: 160px;
    transform: scale(.72);
    margin-left: -90px;
    margin-right: -90px;
  }

  .creator-fan div {
    width: 105px;
    height: 135px;
  }

  .video-placeholder { min-height: 330px; }

  .project-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 28px 0;
    gap: 10px;
    text-align: center;
  }

  footer .brand,
  footer > a { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}


@media (max-width: 460px) {
  .hero { min-height: 980px; }
  .orbit {
    transform: scale(.68);
    top: 54px;
  }
  .hero-content { padding-top: 220px; }
  .person-thumb figcaption {
    min-width: 96px;
    max-width: 110px;
  }
}


/* ===== ABOUT SECTION FIX ===== */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  grid-template-areas:
    "copy portrait"
    "feature portrait";
  column-gap: 44px;
  row-gap: 14px;
  align-items: start;
}

.about-copy {
  grid-area: copy;
  padding-top: 10px;
  max-width: 760px;
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.about-lead {
  margin-top: 26px !important;
  max-width: 640px;
  line-height: 1.6;
}

.about-feature {
  grid-area: feature;
  width: 100%;
  max-width: 640px;
  padding: 28px;
  align-items: flex-start;
  margin-top: 6px;
}

.about-portrait {
  grid-area: portrait;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 500px;
  margin-top: 0;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.08);
  display: block;
}

.portrait-image {
  display: block;
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "portrait"
      "feature";
    gap: 28px;
  }

  .about-copy,
  .about-feature {
    max-width: none;
  }

  .about-portrait {
    justify-self: stretch;
    max-width: none;
  }

  .portrait-image {
    height: 520px;
    object-position: center 18%;
  }
}

@media (max-width: 760px) {
  .about-feature {
    padding: 24px 20px;
  }

  .portrait-image {
    height: 400px;
    object-position: center 18%;
  }
}


/* ===== STATS PANEL / WORKSPACE PHOTO ===== */
.social-strip-single {
  grid-template-columns: minmax(240px, 380px);
  justify-content: center;
}

.single-visual {
  grid-template-columns: 1fr;
}

.workspace-photo-card {
  position: relative;
  width: min(100%, 760px);
  min-height: 320px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(80, 255, 155, .16);
  background:
    linear-gradient(135deg, rgba(34,197,94,.20), rgba(255,255,255,.02));
  box-shadow:
    0 0 0 1px rgba(34,197,94,.10),
    0 0 28px rgba(34,197,94,.18),
    0 20px 60px rgba(0,0,0,.24);
}

.workspace-photo {
  --photo-progress: 0;
  width: 100%;
  height: 100%;
  min-height: 314px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transform-origin: center center;
  transform:
    scale(calc(0.72 + (var(--photo-progress) * 0.28)))
    translateY(calc((1 - var(--photo-progress)) * 16px));
  filter: blur(calc((1 - var(--photo-progress)) * 8px));
  opacity: calc(0.58 + (var(--photo-progress) * 0.42));
  transition: transform .12s linear, filter .12s linear, opacity .12s linear;
  will-change: transform, filter, opacity;
}

@media (max-width: 980px) {
  .social-strip-single {
    grid-template-columns: 1fr;
  }

  .workspace-photo-card {
    width: min(100%, 680px);
    min-height: 360px;
  }

  .workspace-photo {
    min-height: 354px;
  }
}

@media (max-width: 760px) {
  .workspace-photo-card {
    width: 100%;
    min-height: 260px;
  }

  .workspace-photo {
    min-height: 254px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workspace-photo {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}


/* ===== SERVICES ANIMATED V9 ===== */
.services-animated-grid .service-card {
  min-height: 500px;
}

.service-card-animated {
  position: relative;
  overflow: hidden;
}

.service-card-animated::after {
  content: "";
  position: absolute;
  inset: auto -20% -22% -20%;
  height: 46%;
  background: radial-gradient(circle at 50% 0%, rgba(34,197,94,.14), transparent 60%);
  pointer-events: none;
}

.service-card-animated h3 {
  margin-bottom: 8px;
}

.service-card-animated p {
  max-width: 95%;
}

.service-visual {
  position: relative;
  margin-top: 28px;
  min-height: 190px;
  border-radius: 22px;
  border: 1px solid rgba(110,231,162,.12);
  background:
    radial-gradient(circle at 50% 12%, rgba(34,197,94,.08), transparent 28%),
    linear-gradient(180deg, rgba(34,197,94,.07), rgba(7,10,9,.2) 55%, rgba(34,197,94,.03));
  overflow: hidden;
}

/* card 1 */
.flow-visual {
  padding: 20px 18px 18px;
}

.flow-apps {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 240px;
  margin: 0 auto;
}

.flow-apps span,
.consult-chip-row span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,18,18,.72);
  color: #ececf0;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: -.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.flow-svg {
  position: absolute;
  inset: 16px 18px 14px;
  width: calc(100% - 36px);
  height: calc(100% - 30px);
}

.flow-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.flow-line.base {
  stroke: rgba(107,114,128,.30);
}

.flow-line.glow {
  stroke: #52ff98;
  filter: drop-shadow(0 0 10px rgba(82,255,152,.9));
  stroke-dasharray: 18 140;
  animation: flowPulse 2.8s linear infinite;
}

.flow-line.g2 { animation-delay: -.55s; }
.flow-line.g3 { animation-delay: -1.1s; }
.flow-line.g4 { animation-delay: -1.65s; }

.flow-core {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 3;
  color: #effef5;
  background: linear-gradient(135deg, #16a34a, #39e67a);
  box-shadow: 0 0 0 5px rgba(34,197,94,.08), 0 0 24px rgba(34,197,94,.35);
}

/* card 2 */
.consult-visual {
  padding: 18px;
  display: grid;
  place-items: center;
}

.consult-chip-row {
  position: absolute;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  white-space: nowrap;
  width: max-content;
}

.consult-chip-row span {
  min-width: unset;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .88rem;
  color: #b3b0bb;
  font-weight: 500;
  background: rgba(12,14,16,.56);
}

.row-a { top: 26px; animation: slideChips 18s linear infinite; }
.row-b { top: 76px; animation: slideChipsReverse 22s linear infinite; }
.row-c { top: 126px; animation: slideChips 20s linear infinite; }

.consult-center {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.32), rgba(255,255,255,.08) 38%, rgba(86,255,159,.88));
  box-shadow: 0 0 0 10px rgba(34,197,94,.08), 0 0 32px rgba(84,255,156,.22);
  animation: consultPulse 2.8s ease-in-out infinite;
}

.consult-center::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(84,255,156,.22);
  animation: consultRing 2.8s ease-out infinite;
}

.consult-check {
  color: #f4fff8;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255,255,255,.45);
}

/* card 3 */
.creator-visual {
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.voice-bubble {
  align-self: center;
  padding: 10px 18px;
  border-radius: 18px 18px 18px 8px;
  background: linear-gradient(135deg, #16a34a, #3eee86);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(34,197,94,.28);
}

.voice-player {
  margin: 0 auto;
  width: min(100%, 250px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(8,10,11,.8);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.voice-mic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  background: linear-gradient(135deg, #14873f, #3ef088);
  box-shadow: 0 0 18px rgba(34,197,94,.30);
  font-size: 1rem;
}

.voice-track {
  flex: 1;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  overflow: hidden;
}

.voice-track i {
  display: block;
  width: 3px;
  height: 12px;
  border-radius: 99px;
  background: #f0fff5;
  transform-origin: center bottom;
  animation: voiceBars 1.3s ease-in-out infinite;
}

.voice-track i:nth-child(1) { animation-delay: -.15s; }
.voice-track i:nth-child(2) { animation-delay: -.35s; }
.voice-track i:nth-child(3) { animation-delay: -.7s; }
.voice-track i:nth-child(4) { animation-delay: -.22s; }
.voice-track i:nth-child(5) { animation-delay: -.5s; }
.voice-track i:nth-child(6) { animation-delay: -.95s; }
.voice-track i:nth-child(7) { animation-delay: -.08s; }
.voice-track i:nth-child(8) { animation-delay: -.4s; }
.voice-track i:nth-child(9) { animation-delay: -.62s; }
.voice-track i:nth-child(10) { animation-delay: -.18s; }
.voice-track i:nth-child(11) { animation-delay: -.56s; }
.voice-track i:nth-child(12) { animation-delay: -.82s; }

/* animations */
@keyframes flowPulse {
  from { stroke-dashoffset: 170; }
  to { stroke-dashoffset: 0; }
}

@keyframes slideChips {
  from { transform: translateX(0); }
  to { transform: translateX(-26%); }
}

@keyframes slideChipsReverse {
  from { transform: translateX(-20%); }
  to { transform: translateX(0); }
}

@keyframes consultPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34,197,94,.08), 0 0 32px rgba(84,255,156,.22); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(34,197,94,.10), 0 0 38px rgba(84,255,156,.32); }
}

@keyframes consultRing {
  0% { transform: scale(.75); opacity: .8; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes voiceBars {
  0%, 100% { height: 10px; opacity: .75; }
  30% { height: 30px; opacity: 1; }
  60% { height: 17px; opacity: .9; }
}

@media (max-width: 980px) {
  .services-animated-grid .service-card {
    min-height: 460px;
  }

  .service-visual {
    min-height: 180px;
  }
}

@media (max-width: 760px) {
  .services-animated-grid .service-card {
    min-height: auto;
  }

  .flow-apps {
    max-width: 220px;
  }

  .flow-apps span {
    min-width: 40px;
    height: 40px;
    font-size: .85rem;
  }

  .consult-chip-row span {
    font-size: .8rem;
    height: 34px;
    padding: 0 12px;
  }

  .voice-player {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-line.glow,
  .consult-chip-row,
  .consult-center,
  .consult-center::after,
  .voice-track i {
    animation: none !important;
  }
}


/* ===== PORTFOLIO VIDEO CARDS V10 ===== */
.projects-grid-videos {
  gap: 22px;
}

.project-video {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #08080a;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.project-video:hover {
  transform: translateY(-6px);
  border-color: rgba(110,231,162,.28);
  box-shadow: 0 0 26px rgba(34,197,94,.12), 0 18px 50px rgba(0,0,0,.24);
}

.project-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0b0c;
}

.project-video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}

.project-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
  pointer-events: none;
}

.project-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  padding-left: 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  color: #fff;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.project-video:hover .project-video-thumb img {
  transform: scale(1.045);
  filter: brightness(.84);
}

.project-video:hover .project-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(22,163,74,.92);
  box-shadow: 0 0 22px rgba(34,197,94,.28);
}

@media (max-width: 760px) {
  .project-play {
    width: 54px;
    height: 54px;
  }
}


/* ===== SERVICES TWO CARDS V11 ===== */
.services {
  padding-top: 54px;
}

.services-two-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}

.services-two-cards .service-card {
  min-height: 500px;
}

@media (max-width: 980px) {
  .services-two-cards {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}


/* ===== VIDEO MODAL V12 ===== */
.project-video {
  appearance: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.project-video:focus-visible {
  outline: 2px solid rgba(110,231,162,.85);
  outline-offset: 4px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 5, .78);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(11, 14, 13, .96), rgba(5, 7, 6, .98));
  border: 1px solid rgba(110,231,162,.16);
  box-shadow: 0 0 28px rgba(34,197,94,.12), 0 30px 90px rgba(0,0,0,.45);
}

.video-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(255,255,255,.08);
  transition: background .2s ease, transform .2s ease;
}

.video-modal-close:hover {
  background: rgba(34,197,94,.9);
  transform: scale(1.05);
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .video-modal {
    padding: 16px;
  }

  .video-modal-dialog {
    padding: 14px;
    border-radius: 20px;
  }

  .video-modal-close {
    right: 8px;
    top: 8px;
    width: 38px;
    height: 38px;
  }
}


@keyframes heroDiagonalShine {
  0% {
    background-position: 170% 50%;
    opacity: 0;
  }
  10% {
    opacity: .85;
  }
  68% {
    opacity: .85;
  }
  80% {
    opacity: .18;
  }
  100% {
    background-position: -120% 50%;
    opacity: 0;
  }
}


/* ===== REALIZACJE ANCHOR V18 ===== */
#work {
  scroll-margin-top: 28px;
}


/* ===== INSTAGRAM LINK CARD V19 ===== */
.social-link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(34,197,94,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.social-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(80, 255, 155, .28);
  background: rgba(34,197,94,.09);
  box-shadow: 0 0 20px rgba(34,197,94,.10);
}

.social-link-card:focus-visible {
  outline: 2px solid rgba(80, 255, 155, .7);
  outline-offset: 3px;
}


/* ===== ABOUT CLEAN LAYOUT V20 ===== */
.about-layout {
  grid-template-areas:
    "copy portrait"
    "feature portrait"
    "workspace workspace";
}

.about-workspace {
  grid-area: workspace;
  margin-top: 22px;
}

.about-workspace.workspace-photo-card {
  width: min(100%, 980px);
}

@media (max-width: 980px) {
  .about-layout {
    grid-template-areas:
      "copy"
      "portrait"
      "feature"
      "workspace";
  }

  .about-workspace.workspace-photo-card {
    width: 100%;
  }
}


/* ===== ABOUT STATS FIX V21 ===== */
.about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-stats .stat {
  padding: 22px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top, rgba(34,197,94,.14), transparent 55%),
    rgba(10, 13, 12, .92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 18px 40px rgba(0,0,0,.18);
  text-align: center;
}

.about-stats .stat strong {
  display: inline-block;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.about-stats .stat span {
  display: inline-block;
  margin-left: 6px;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.about-stats .stat p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .98rem;
}

@media (max-width: 980px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}


/* ===== ABOUT STATS GLOW V23 ===== */
.about-stats .stat strong,
.about-stats .stat span {
  text-shadow:
    0 0 10px rgba(34,197,94,.18),
    0 0 22px rgba(34,197,94,.12);
}

.about-stats .stat strong {
  color: #f5fff8;
}

.about-stats .stat span {
  color: #d7ffe4;
}


/* ===== CONTACT FORM MODAL V24 ===== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 3, .78);
  backdrop-filter: blur(10px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(900px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 44px;
  border-radius: 28px;
  border: 1px solid rgba(80,255,155,.20);
  background:
    radial-gradient(circle at 50% 0%, rgba(34,197,94,.16), transparent 34%),
    linear-gradient(180deg, rgba(9,13,11,.99), rgba(5,7,6,.99));
  box-shadow:
    0 0 0 1px rgba(34,197,94,.06),
    0 0 48px rgba(34,197,94,.16),
    0 28px 100px rgba(0,0,0,.52);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.contact-modal-close:hover {
  transform: rotate(4deg) scale(1.05);
  background: rgba(34,197,94,.18);
  border-color: rgba(80,255,155,.24);
}

.contact-modal-head {
  text-align: center;
  margin-bottom: 30px;
}

.contact-modal-head h2 {
  margin: 18px 0 10px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  letter-spacing: -.05em;
  line-height: .98;
}

.contact-modal-head p {
  margin: 0 auto;
  max-width: 600px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  background: rgba(4,7,5,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

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

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

.contact-form label > span {
  color: #d7ddd9;
  font-size: .82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  outline: 0;
  padding: 14px 15px;
  color: #f7faf8;
  background: rgba(255,255,255,.035);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #676d69;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(80,255,155,.42);
  background: rgba(34,197,94,.045);
  box-shadow: 0 0 0 3px rgba(34,197,94,.07), 0 0 20px rgba(34,197,94,.08);
}

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

.contact-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  margin-top: 2px;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: .7;
}

.contact-form-status {
  min-height: 22px;
  margin: 0;
  text-align: center;
  color: #a9b0ac;
  font-size: .9rem;
}

.contact-form-status.is-success { color: #86efac; }
.contact-form-status.is-error { color: #fca5a5; }

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .contact-modal {
    padding: 12px;
  }

  .contact-modal-dialog {
    padding: 34px 18px 20px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 18px;
  }

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


