:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --blue-soft: #73b7ff;
  --blue-bright: #2f8cff;
  --blue-deep: #0d4d8f;
  --glow-left-x: -30px;
  --glow-left-y: 0px;
  --glow-right-x: 20px;
  --glow-right-y: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(115, 183, 255, 0.22), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #010101 0%, #07111d 42%, #0b0f16 100%);
  color: var(--text);
  font-family: "Patrick Hand", cursive;
}

.site-footer {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.site-footer__heart {
  color: var(--blue-soft);
  font-weight: 700;
  font-size: 1rem;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px 24px 72px;
  isolation: isolate;
}

.hero__title-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.ghost-float {
  position: absolute;
  top: -8px;
  right: -138px;
  width: clamp(92px, 10vw, 138px);
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  opacity: 0.94;
  filter: drop-shadow(0 16px 24px rgba(7, 15, 24, 0.18));
  transform: translate3d(0, 0, 0) rotate(-5deg) scaleX(-1);
  transform-origin: center bottom;
  will-change: transform;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.hero__glow--left {
  top: 16%;
  left: 10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(115, 183, 255, 0.34), transparent 68%);
  transform: translate(var(--glow-left-x), var(--glow-left-y));
}

.hero__glow--right {
  right: 8%;
  bottom: 12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  transform: translate(var(--glow-right-x), var(--glow-right-y));
}

.hero__card {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero__title-soft {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero__title-strong {
  background: linear-gradient(90deg, #ffffff 0%, var(--blue-soft) 35%, var(--blue-bright) 65%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(47, 140, 255, 0.16);
  animation: nameShine 5s linear infinite;
}

.hero__text {
  margin: 24px 0 0;
  max-width: none;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.6;
}

.hero__nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__nav-item {
  appearance: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 92px;
  padding: 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.hero__nav-item:hover,
.hero__nav-item:focus-visible {
  transform: translateY(-5px) scale(1.03);
  color: var(--blue-soft);
  filter: drop-shadow(0 0 18px rgba(47, 140, 255, 0.16));
  outline: none;
}

.hero__nav-item svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  opacity: 0.94;
}

.hero__nav-item span {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.desktop-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

.window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(800px, calc(100vw - 40px));
  height: min(560px, calc(100vh - 56px));
  border: 1px solid rgba(115, 183, 255, 0.36);
  border-radius: 16px;
  background: linear-gradient(180deg, #eef6ff, #f8fbff);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #243344;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(var(--window-enter-x, 0px), var(--window-enter-y, 18px), 0) scale(0.94) rotate(var(--window-enter-rotate, 0deg));
  transform-origin: center;
  transition:
    opacity 240ms ease,
    transform 340ms cubic-bezier(0.18, 0.9, 0.22, 1.12),
    box-shadow 340ms ease,
    filter 340ms ease;
  filter: blur(4px);
  pointer-events: none;
  will-change: transform, opacity;
}

.window--work {
  width: min(1080px, calc(100vw - 40px));
  height: min(760px, calc(100vh - 56px));
}

.window.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
  pointer-events: auto;
}

.window.is-closing {
  opacity: 0;
  transform: translate3d(calc(var(--window-enter-x, 0px) * 0.45), calc(var(--window-enter-y, 18px) * 0.45), 0) scale(0.97) rotate(calc(var(--window-enter-rotate, 0deg) * 0.35));
  filter: blur(2px);
  pointer-events: none;
}

.window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #10253d, #1c3e63);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: grab;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.window__bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-24deg);
  opacity: 0;
}

.window.is-open .window__bar::after {
  animation: barSweep 520ms ease-out;
}

.window__title {
  text-transform: lowercase;
}

.window__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  padding: 0;
}

.window__resize {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: nwse-resize;
  pointer-events: auto;
}

.window__resize::before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(28, 62, 99, 0.55) 46% 54%, transparent 54% 100%),
    linear-gradient(135deg, transparent 0 64%, rgba(28, 62, 99, 0.35) 64% 72%, transparent 72% 100%);
}

.window__scroll {
  height: calc(100% - 52px);
  overflow: hidden;
}

.window__scroll--profile {
  display: flex;
  flex-direction: column;
}

.window__scroll--faq {
  display: flex;
  flex-direction: column;
}

.window__scroll--work {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 140, 255, 0.55) rgba(20, 49, 78, 0.08);
}

.window__scroll--work::-webkit-scrollbar {
  width: 10px;
}

.window__scroll--work::-webkit-scrollbar-track,
.window__scroll--contact::-webkit-scrollbar-track {
  background: rgba(20, 49, 78, 0.08);
}

.window__scroll--work::-webkit-scrollbar-thumb,
.window__scroll--contact::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(115, 183, 255, 0.95), rgba(47, 140, 255, 0.75));
  border-radius: 999px;
}

.window__scroll--contact {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 140, 255, 0.55) rgba(20, 49, 78, 0.08);
}

.window__scroll--contact::-webkit-scrollbar {
  width: 10px;
}

.window__content--scrollable,
.window__scroll > .window__content--empty {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 140, 255, 0.55) rgba(20, 49, 78, 0.08);
}

.window__content--scrollable {
  flex: 1;
}

.window__content--scrollable::-webkit-scrollbar,
.window__scroll > .window__content--empty::-webkit-scrollbar {
  width: 10px;
}

.window__content--scrollable::-webkit-scrollbar-track,
.window__scroll > .window__content--empty::-webkit-scrollbar-track {
  background: rgba(20, 49, 78, 0.08);
}

.window__content--scrollable::-webkit-scrollbar-thumb,
.window__scroll > .window__content--empty::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(115, 183, 255, 0.95), rgba(47, 140, 255, 0.75));
  border-radius: 999px;
}

.window__top {
  flex: none;
  background: linear-gradient(180deg, #fafdff, #eef6ff);
  border-bottom: 1px solid rgba(47, 140, 255, 0.12);
}

.profile-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 46px 36px;
}

.profile-card__avatar {
  overflow: hidden;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d4d8f, #06111e);
  box-shadow:
    0 14px 30px rgba(13, 77, 143, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.profile-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__intro h2 {
  margin: 0;
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, #dff0ff 0%, #8ec7ff 45%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.95;
  filter: drop-shadow(0 0 14px rgba(47, 140, 255, 0.16));
  animation: profileNameFloat 6s ease-in-out infinite, profileNameGlow 6s ease-in-out infinite;
}

.profile-card__intro h2::after {
  content: "Lucifex";
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(115, 183, 255, 0.18);
  filter: blur(12px);
  transform: scale(1.03);
  animation: profileNameAura 6s ease-in-out infinite;
}

.profile-card__intro p {
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.5;
}

.profile-stats {
  margin: 26px 0 26px;
  padding: 22px;
  border: 1px solid rgba(47, 140, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 245, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.profile-stats__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.profile-stats__header h3 {
  margin: 0;
  color: #29435e;
  font-size: 1.4rem;
}

.profile-stats__header p {
  margin: 0;
  color: #698199;
  font-size: 0.95rem;
}

.profile-stats__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.profile-stat-card {
  padding: 14px 16px;
  border: 1px solid rgba(47, 140, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.profile-stat-card__label {
  display: block;
  color: #6f8498;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.profile-stat-card__value {
  display: block;
  margin-top: 4px;
  color: #163b63;
  font-size: 2rem;
  line-height: 1;
}

.profile-chart {
  position: relative;
  height: 220px;
  padding: 18px 12px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.95), rgba(231, 242, 255, 0.95));
  overflow: hidden;
}

.profile-chart__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(47, 140, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(to right, rgba(47, 140, 255, 0.05) 1px, transparent 1px) 0 0 / 20% 100%;
}

.profile-chart__bars {
  position: absolute;
  inset: 16px 14px 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  z-index: 2;
}

.profile-chart__bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 8px;
  height: 100%;
}

.profile-chart__bar {
  width: 100%;
  max-width: 40px;
  height: var(--bar-height);
  min-height: 18px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #a8d7ff, #2f8cff);
  box-shadow: 0 10px 16px rgba(47, 140, 255, 0.16);
  transform-origin: bottom;
  transform: scaleY(0.08);
  opacity: 0.4;
}

.profile-chart__bar-wrap span {
  color: #546f8b;
  font-size: 0.9rem;
}

.profile-chart__line {
  position: absolute;
  inset: 16px 14px 36px;
  width: calc(100% - 28px);
  height: calc(100% - 52px);
  z-index: 1;
}

.profile-chart__path {
  fill: none;
  stroke: url(#profileLineGradient);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

.profile-chart__area {
  fill: rgba(47, 140, 255, 0.14);
  opacity: 0;
}

.profile-stats.is-visible .profile-chart__bar {
  animation: profileBarRise 1.6s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.profile-stats.is-visible .profile-chart__path {
  animation: profileLineDraw 1.8s ease forwards 0.2s;
}

.profile-stats.is-visible .profile-chart__area {
  animation: profileAreaFade 1.1s ease forwards 0.9s;
}

.window__content {
  padding: 24px 46px 40px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.window__content p {
  margin: 0 0 20px;
}

.window__content a {
  color: var(--blue-bright);
  font-weight: 700;
}

.window__content--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: #777777;
}

.window__content--work {
  padding-bottom: 48px;
}

.window__content--faq {
  min-height: 100%;
  color: #304457;
}

.window__content--contact {
  min-height: 100%;
  color: #304457;
}

.faq-intro {
  margin-bottom: 24px;
}

.faq-intro__eyebrow {
  margin: 0 0 8px;
  color: #6783a0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-intro h2 {
  margin: 0 0 8px;
  color: #233c57;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.faq-intro p {
  margin: 0;
  color: #617b95;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(47, 140, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 280ms ease,
    transform 220ms ease;
}

.faq-item[open] {
  border-color: rgba(47, 140, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(47, 140, 255, 0.08);
}

.faq-item:hover {
  transform: translateY(-1px);
}

.faq-item__summary {
  list-style: none;
  position: relative;
  padding: 18px 52px 18px 18px;
  cursor: pointer;
  color: #23415e;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #2f8cff;
  font-size: 1.4rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    color 180ms ease;
}

.faq-item[open] .faq-item__summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] .faq-item__summary {
  color: #1c4f87;
  background: rgba(227, 240, 255, 0.4);
}

.faq-item__content {
  padding: 0 18px 20px;
  color: #526a84;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.faq-item.is-animating .faq-item__content {
  overflow: hidden;
}

.faq-item:not([open]) .faq-item__content {
  opacity: 0;
  transform: translateY(-6px);
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}

.faq-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.faq-price-card {
  padding: 16px;
  border: 1px solid rgba(47, 140, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-price-card h3 {
  margin: 0 0 10px;
  color: #284563;
  font-size: 1rem;
}

.faq-price-card ul {
  margin: 0;
  padding-left: 18px;
}

.faq-price-card li + li {
  margin-top: 8px;
}

.faq-note {
  margin: 8px 0 0;
  color: #335a86;
  font-weight: 700;
}

.contact-hero {
  margin-bottom: 24px;
}

.contact-hero__eyebrow {
  margin: 0 0 8px;
  color: #6783a0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero h2 {
  margin: 0 0 10px;
  color: #233c57;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.contact-hero p {
  margin: 0;
  color: #617b95;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.contact-highlight {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(47, 140, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(22, 52, 82, 0.06);
}

.contact-highlight__avatar {
  width: 116px;
  height: 116px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #0d4d8f, #06111e);
  box-shadow:
    0 12px 24px rgba(47, 140, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.contact-highlight__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-highlight__label {
  margin: 0 0 6px;
  color: #6f86a0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-highlight__body h3 {
  margin: 0 0 8px;
  color: #24415e;
  font-size: 1.35rem;
  line-height: 1.12;
}

.contact-highlight__body p:last-child {
  margin: 0;
  color: #617b95;
  line-height: 1.6;
}

.contact-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(47, 140, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(22, 52, 82, 0.06);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #ebf4ff);
  color: #2f8cff;
  box-shadow: 0 8px 18px rgba(47, 140, 255, 0.12);
}

.contact-card__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-card__body h3,
.contact-panel h3 {
  margin: 0;
}

.contact-card__label {
  margin: 0 0 4px;
  color: #6f86a0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card__body h3 {
  color: #24415e;
  font-size: 1.2rem;
  line-height: 1.15;
}

.contact-card__body p:last-child {
  margin: 8px 0 0;
  color: #617b95;
  line-height: 1.55;
}

.contact-card--discord .contact-card__icon {
  color: #5865f2;
}

.contact-card--gmail .contact-card__icon {
  color: #ea4335;
}

.contact-card--paypal .contact-card__icon {
  color: #0070ba;
}

.contact-panel {
  padding: 18px;
  border: 1px solid rgba(47, 140, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 255, 0.96));
}

.contact-panel h3 {
  margin-bottom: 12px;
  color: #24415e;
  font-size: 1.15rem;
}

.contact-panel__note {
  margin: 14px 0 0;
  color: #617b95;
}

.work-subheading {
  margin: 16px 0 22px;
}

.work-subheading__title {
  margin: 0 0 4px;
  color: #57708a;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.work-heading--stacked {
  margin-bottom: 14px;
}

.work-notice {
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 95, 95, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 238, 238, 0.98), rgba(255, 245, 245, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.work-notice__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: #7f2525;
  font-size: 1rem;
  font-weight: 700;
}

.work-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ff5a5a;
}

.work-notice__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.work-notice p {
  margin: 0;
  color: #7a4545;
  line-height: 1.55;
}

.work-notice a,
.work-notice strong {
  color: #ff5a5a;
  font-weight: 700;
}

.work-section + .work-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(47, 140, 255, 0.12);
}

.work-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.work-filter__button {
  appearance: none;
  border: 1px solid rgba(47, 140, 255, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #4c6075;
  cursor: pointer;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 12px 22px;
  min-height: 54px;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.work-filter__button:hover,
.work-filter__button:focus-visible {
  border-color: rgba(47, 140, 255, 0.35);
  color: var(--blue-bright);
  transform: translateY(-1px);
  outline: none;
}

.work-filter__button.is-active {
  border-color: rgba(47, 140, 255, 0.4);
  background: linear-gradient(180deg, #eaf5ff, #d9ecff);
  color: #184f87;
  box-shadow: 0 8px 18px rgba(47, 140, 255, 0.12);
}

.work-heading {
  margin: 0 0 16px;
  color: #33475c;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 140, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f1f7ff);
  box-shadow: 0 2px 0 rgba(25, 54, 84, 0.08);
  color: #43576c;
  font-size: 0.98rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.skill-pill:hover,
.skill-pill:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  border-color: rgba(47, 140, 255, 0.26);
  background: linear-gradient(180deg, #ffffff, #e7f3ff);
  box-shadow:
    0 10px 18px rgba(47, 140, 255, 0.12),
    0 2px 0 rgba(25, 54, 84, 0.08);
  color: #1f4f80;
  outline: none;
}

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

.video-card p,
.image-card p {
  margin: 10px 0 0;
}

.video-card__frame {
  overflow: hidden;
  border-radius: 16px;
  background: #0d1117;
  box-shadow:
    0 10px 24px rgba(20, 36, 54, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-card__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 0;
}

.video-card p {
  margin: 12px 0 0;
  color: #445a70;
  font-size: 0.98rem;
}

.video-card.is-hidden {
  display: none;
}

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

.image-grid--models {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-card {
  position: relative;
  min-height: 180px;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 10px 22px rgba(18, 36, 54, 0.08);
  overflow: hidden;
}

.image-card--tall {
  min-height: 280px;
}

.image-card__button {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 14px 14px 16px;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(10, 18, 27, 0.82) 100%);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.image-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.image-card__meta {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-card__label {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
}

.image-card.is-hidden {
  display: none;
}

.model-card {
  min-height: 320px;
  background: linear-gradient(180deg, #e8f3ff 0%, #d3e6f9 100%);
}

.model-card__button {
  justify-content: flex-end;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 16%, rgba(6, 15, 25, 0.18) 58%, rgba(6, 15, 25, 0.88) 100%);
}

.model-card__viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(96, 128, 188, 0.16), transparent 42%),
    linear-gradient(180deg, #11151c 0%, #171d27 48%, #1e2530 100%);
}

.model-card__viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.model-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(31, 39, 51, 0.96), rgba(19, 24, 32, 0.92)),
    linear-gradient(180deg, #161b23, #0f1319);
  color: #eaf1fb;
  text-align: center;
}

.model-card__fallback[hidden] {
  display: none;
}

.model-card__fallback p,
.model-card__fallback span {
  margin: 0;
}

.model-card__fallback p {
  font-size: 1.2rem;
  font-weight: 700;
}

.model-card__fallback span {
  max-width: 28ch;
  color: #9db0c9;
  line-height: 1.5;
}

.profile-list {
  margin: 0 0 24px;
  padding-left: 28px;
}

.profile-list li {
  margin-bottom: 10px;
}

@keyframes nameShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes barSweep {
  0% {
    transform: translateX(0) skewX(-24deg);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(460%) skewX(-24deg);
    opacity: 0;
  }
}

@keyframes profileNameFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

@keyframes profileNameGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(47, 140, 255, 0.14));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(47, 140, 255, 0.24));
  }
}

@keyframes profileNameAura {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1.02);
  }

  50% {
    opacity: 0.42;
    transform: scale(1.045);
  }
}

@keyframes profileBarRise {
  0% {
    transform: scaleY(0.08);
    opacity: 0.4;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes profileLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes profileAreaFade {
  to {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 18px 18px 72px;
  }

  .hero__card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .ghost-float {
    top: -2px;
    right: -52px;
    width: clamp(74px, 18vw, 102px);
  }

  .hero__nav {
    gap: 24px;
    margin-top: 28px;
  }

  .hero__nav-item {
    min-width: 82px;
    gap: 10px;
  }

  .window {
    width: calc(100vw - 20px);
    height: min(620px, calc(100vh - 20px));
    border-radius: 14px;
  }

  .window--work {
    width: calc(100vw - 20px);
    height: min(720px, calc(100vh - 20px));
  }

  .window__bar {
    padding: 12px 16px;
  }

  .profile-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
    padding: 24px 22px 28px;
  }

  .profile-card__avatar {
    width: 108px;
    height: 108px;
  }

  .window__content {
    padding: 22px 22px 34px;
    font-size: 1rem;
  }

  .profile-stats__header,
  .profile-stats__cards {
    grid-template-columns: 1fr;
    display: grid;
  }

  .work-skills,
  .video-grid,
  .image-grid,
  .image-grid--models {
    grid-template-columns: 1fr;
  }

  .faq-price-grid {
    grid-template-columns: 1fr;
  }

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

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

  .model-card,
  .model-card__viewer,
  .model-card__fallback {
    min-height: 300px;
  }

  .hero__glow--left {
    left: -10%;
    top: 10%;
    width: 240px;
    height: 240px;
  }

  .hero__glow--right {
    right: -12%;
    bottom: 8%;
    width: 220px;
    height: 220px;
  }
}
