:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --faint: rgba(255, 255, 255, 0.4);
  --purple: #8d35ff;
  --pink: #ff3fa4;
  --orange: #ffb23f;
  --cyan: #55d6ff;
  --max: 1400px;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 53, 255, 0.25), transparent 38rem),
    radial-gradient(circle at 85% 20%, rgba(255, 63, 164, 0.14), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 26rem;
  background: linear-gradient(180deg, transparent, var(--bg) 76%);
  pointer-events: none;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem 0;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.brand,
.footer-wordmark {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
}

.brand {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.primary-nav a,
.nav-cta,
.mini-label,
.small-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #ffffff;
}

.nav-cta,
.button,
.plan-button,
.project-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--pink) 52%, var(--orange));
  box-shadow: 0 0 70px rgba(255, 63, 164, 0.36);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta {
  padding: 0.82rem 1.25rem;
}

.button {
  padding: 1rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-cta:hover,
.button:hover,
.plan-button:hover,
.submit-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 90px rgba(255, 63, 164, 0.5);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.menu-button span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: #ffffff;
  transition:
    transform 180ms ease,
    top 180ms ease;
}

.menu-button span:first-child {
  top: 1.05rem;
}

.menu-button span:last-child {
  top: 1.55rem;
}

.nav-toggle:checked + .menu-button span:first-child {
  top: 1.32rem;
  transform: rotate(45deg);
}

.nav-toggle:checked + .menu-button span:last-child {
  top: 1.32rem;
  transform: rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
  padding-top: 6.75rem;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section-tight {
  padding: 4.5rem 0;
}

.section-bottom {
  padding-bottom: 8rem;
}

.center {
  text-align: center;
}

.mini-label {
  color: var(--faint);
}

.eyebrow-gap {
  margin-bottom: 1rem;
}

.display-title,
.hero-title,
.section-title,
.page-title,
.footer-wordmark {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gradient-text,
.brand span,
.footer-wordmark {
  background: linear-gradient(135deg, var(--purple), var(--pink) 52%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 8rem;
}

.hero::before,
.radial-glow {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(141, 53, 255, 0.38), transparent 58%);
}

.hero-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(4.4rem, 17vw, 18rem);
}

.hero-art {
  position: relative;
  z-index: 3;
  width: min(92vw, 540px);
  margin: clamp(-9rem, -15vw, -3rem) auto 0;
  animation: float-y 6s ease-in-out infinite;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 8% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 63, 164, 0.28), rgba(141, 53, 255, 0.16), transparent 68%);
  filter: blur(38px);
  transform: translateY(2rem);
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 46px 62px rgba(180, 80, 255, 0.34));
}

.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}

.hero-meta p {
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-strip {
  margin-top: 5.5rem;
  text-align: center;
}

.brand-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.75rem;
}

.section-title {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.page-title {
  font-size: clamp(3.2rem, 9vw, 8.5rem);
}

.outlined {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.54);
}

.lede {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading .lede {
  max-width: 24rem;
  margin: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 14rem;
  gap: 1.25rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: #111111;
}

.media-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 700ms ease;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.media-card:hover img {
  transform: scale(1.08);
}

.media-card:hover::after {
  opacity: 0.95;
}

.media-card span {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  bottom: 1.1rem;
}

.glass-panel,
.glass-card,
.strong-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.strong-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 63, 164, 0.15), transparent 36rem),
    linear-gradient(180deg, rgba(27, 7, 55, 0.95), rgba(10, 2, 18, 0.96), rgba(5, 5, 5, 0.98));
  padding: clamp(2rem, 5vw, 4rem);
}

.plans-grid,
.testimonials-grid,
.projects-grid,
.customer-grid,
.video-grid,
.features-grid,
.skills-grid {
  display: grid;
  gap: 1.25rem;
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.015));
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.plan-card.featured {
  border-color: rgba(255, 63, 164, 0.46);
  background: linear-gradient(180deg, rgba(255, 63, 164, 0.13), rgba(255, 178, 63, 0.052));
  box-shadow: 0 0 70px rgba(255, 63, 164, 0.24);
  transform: translateY(-0.35rem);
}

.plan-card:hover,
.project-card:hover,
.customer-card:hover,
.testimonial-card:hover,
.feature-card:hover,
.skill-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(255, 63, 164, 0.38);
  box-shadow: 0 22px 80px rgba(141, 53, 255, 0.22);
}

.plan-top,
.project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge.light {
  border-color: transparent;
  background: #ffffff;
  color: #050505;
}

.number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.plan-card h3,
.project-card h3,
.skill-card h3,
.feature-card h3,
.customer-card h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.plan-card h3 {
  margin-top: 1.75rem;
  font-size: 1.55rem;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.price {
  font-family: var(--display);
  font-size: clamp(3.25rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
}

.price-note {
  margin-bottom: 0.45rem;
  color: var(--faint);
}

.plan-card p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  margin: 1.4rem 0;
  background: var(--line-soft);
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(255, 63, 164, 0.7);
}

.plan-button {
  margin-top: auto;
  padding: 0.95rem 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.testimonial-card {
  display: flex;
  gap: 1rem;
  border-radius: 1.35rem;
  padding: 2rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.avatar,
.feature-icon,
.play-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  color: #ffffff;
  font-family: var(--display);
  font-weight: 800;
}

.avatar {
  width: 3rem;
  height: 3rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-name {
  margin-top: 1rem;
  font-weight: 700;
}

.quote-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  padding: 5.5rem 0 2.2rem;
  background: #050505;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 20rem;
  background: radial-gradient(circle at 50% 0%, rgba(141, 53, 255, 0.28), transparent 62%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
  color: var(--muted);
}

.footer-grid ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-wordmark {
  position: relative;
  margin-top: 4rem;
  font-size: clamp(3.5rem, 12vw, 12rem);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.2rem;
  font-size: 0.78rem;
}

.intro-float {
  position: absolute;
  z-index: -1;
  width: clamp(8rem, 14vw, 15rem);
  border-radius: 50%;
  opacity: 0.58;
  animation: float-y 6s ease-in-out infinite;
}

.intro-float.one {
  left: 2vw;
  top: 4rem;
  filter: blur(1px);
}

.intro-float.two {
  right: 3vw;
  top: 9rem;
  animation-delay: 1s;
}

.intro-float.three {
  left: 26vw;
  bottom: -2rem;
  width: 9rem;
  opacity: 0.48;
  animation-delay: 2s;
}

.spaced-copy {
  max-width: 43rem;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
}

.tabs label {
  min-width: 8.5rem;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

#tab-education:checked ~ .timeline-header .for-education,
#tab-experience:checked ~ .timeline-header .for-experience {
  background: #ffffff;
  color: #050505;
}

.timeline-panel {
  display: none;
}

#tab-education:checked ~ .timeline-education,
#tab-experience:checked ~ .timeline-experience {
  display: grid;
  gap: 1.25rem;
}

.timeline-card {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2rem;
  border-radius: 1.6rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.timeline-mark {
  display: grid;
  grid-template-columns: 0.65rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.timeline-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
}

.timeline-line {
  height: 1px;
  background: var(--line);
}

.timeline-card h3 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
}

.timeline-card .school {
  margin-top: 0.3rem;
}

.timeline-card p {
  max-width: 46rem;
  margin-top: 1rem;
  color: var(--muted);
}

.features-shell {
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.feature-card {
  border-radius: 1.4rem;
  padding: 2rem;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 1rem;
  font-size: 0.78rem;
}

.feature-card h3 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.skills-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.skill-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  padding: 1.75rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.skill-card h3 {
  margin-top: 0.4rem;
  font-size: 1.8rem;
}

.skill-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.skill-row {
  display: grid;
  gap: 0.48rem;
}

.skill-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.skill-meta strong {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--display);
  font-size: 0.8rem;
}

.skill-bar {
  overflow: hidden;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.skill-bar span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--orange));
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.snapshot-card {
  border-radius: 1.7rem;
  padding: 1.75rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-cloud span,
.project-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.048);
  color: rgba(255, 255, 255, 0.72);
}

.tag-cloud span {
  padding: 0.42rem 0.75rem;
  font-size: 0.78rem;
}

.snapshot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.snapshot-list article {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
}

.premium-card {
  display: flex;
  min-height: 21rem;
  align-items: flex-end;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 178, 63, 0.13), transparent 15rem),
    radial-gradient(circle at 50% 100%, rgba(255, 63, 164, 0.18), transparent 18rem),
    linear-gradient(135deg, #171717, #09090b, #28051f);
}

.premium-card h3 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

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

.project-card {
  overflow: hidden;
  border-radius: 1.7rem;
  padding: 1.5rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.project-card h3 {
  margin-top: 0.35rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.project-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.project-link {
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  padding: 0.66rem 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-link:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #050505;
}

.project-image,
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #111111;
}

.project-image {
  height: 21rem;
  margin-top: 1.5rem;
}

.project-image img,
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 500ms ease;
}

.project-card:hover .project-image img,
.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.customer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-card {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.customer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transition: opacity 200ms ease;
}

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

.customer-card h3 {
  margin-top: 1.3rem;
  font-size: 1.9rem;
}

.customer-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-video {
  overflow: hidden;
  border-radius: 1.8rem;
  padding: 0.25rem;
}

.featured-video iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  border-radius: 1.55rem;
  background: #000000;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  overflow: hidden;
  border-radius: 1.5rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.video-card:hover {
  transform: translateY(-0.45rem);
  box-shadow: 0 22px 80px rgba(141, 53, 255, 0.22);
}

.video-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 180ms ease;
}

.video-card:hover .video-thumb::after {
  background: rgba(0, 0, 0, 0.32);
}

.play-dot {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.play-dot::before {
  content: "";
  margin-left: 0.18rem;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
  border-left: 0.85rem solid #ffffff;
}

.video-card:hover .play-dot {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 63, 164, 0.82);
}

.time-badge {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  padding: 0.28rem 0.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
}

.video-copy {
  padding: 1.4rem;
}

.video-copy h3 {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.25;
}

.video-copy p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-panel .intro-float {
  z-index: 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.email-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--faint);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 0.95rem 1.05rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 63, 164, 0.58);
  background: rgba(255, 255, 255, 0.07);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.fade-in {
  animation: fade-up 720ms ease both;
}

.delay-1 {
  animation-delay: 90ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 270ms;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.25rem);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1020px) {
  .plans-grid,
  .skills-grid,
  .projects-grid,
  .customer-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .primary-nav {
    gap: 1rem;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .site-header {
    padding: 0.6rem 0;
  }

  .nav-shell {
    min-height: 3.8rem;
    border-radius: 1.5rem;
    padding: 0.65rem 0.8rem 0.65rem 1rem;
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
    padding: 0.8rem;
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
  }

  .primary-nav a {
    padding: 0.85rem 0.9rem;
  }

  .nav-toggle:checked ~ .primary-nav {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  main {
    padding-top: 5.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-bottom: 5.5rem;
  }

  .hero-title {
    font-size: clamp(4rem, 22vw, 8rem);
  }

  .hero-art {
    margin-top: -3rem;
  }

  .hero-meta,
  .split-heading,
  .timeline-header,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 12rem;
  }

  .media-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .plans-grid,
  .testimonials-grid,
  .features-grid,
  .skills-grid,
  .projects-grid,
  .customer-grid,
  .video-grid,
  .footer-grid,
  .snapshot-list {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .tabs {
    width: 100%;
  }

  .tabs label {
    min-width: 0;
  }

  .project-image {
    height: 17rem;
  }
}

@media (max-width: 520px) {
  .brand-strip-list {
    gap: 0.75rem 1.25rem;
    font-size: 1.1rem;
  }

  .page-title,
  .section-title {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .strong-panel,
  .contact-panel,
  .features-shell {
    border-radius: 1.4rem;
    padding: 1.4rem;
  }

  .plan-card,
  .testimonial-card,
  .project-card,
  .customer-card,
  .skill-card,
  .snapshot-card {
    border-radius: 1.2rem;
    padding: 1.3rem;
  }

  .project-top {
    flex-direction: column;
  }

  .project-link {
    width: 100%;
  }

  .contact-grid {
    gap: 2rem;
  }
}
