@charset "utf-8";
:root {
  --lightning-blue: #39a8ff;
  --baby-blue: #cfefff;
  --sky-glow: #7bc8ff;
  --white: #ffffff;
  --off-white: #f7fbff;
  --navy: #08111f;
  --deep-blue: #0d1b33;
  --glass: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.22);
  --shadow: 0 20px 60px rgba(11, 33, 68, 0.18);
  --radius: 22px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(57,168,255,0.24), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(207,239,255,0.25), transparent 24%),
    radial-gradient(circle at 70% 70%, rgba(123,200,255,0.22), transparent 30%),
    linear-gradient(135deg, #07111e 0%, #0a1b33 45%, #10284f 100%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.custom-cursor {
  width: 34px;
  height: 34px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.custom-cursor svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.custom-cursor .ear,
.custom-cursor .tail,
.custom-cursor .body {
  transform-origin: center;
  animation: wiggle 1.7s infinite ease-in-out;
}

.custom-cursor .tail {
  animation-delay: 0.15s;
}

.custom-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.84);
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg) translateY(0px); }
  50% { transform: rotate(4deg) translateY(-1px); }
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--white);
}

.section-subtitle {
  max-width: 680px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 45px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.logo-img {
  height: 28px; /* match text height */
  width: auto;
  object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(57,168,255,0.3));
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* space between logo and name */
}

.logo-text {
  font-weight: 500;
  opacity: 0.9;
}

.logo:hover .logo-img {
  transform: scale(1.05);
  transition: 0.3s ease;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lightning-blue), var(--baby-blue));
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  color: var(--deep-blue);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(57,168,255,0.28);
  transition: var(--transition);
}

.nav-cta:hover,
.btn:hover,
.btn-secondary:hover,
.project-card:hover,
.social-link:hover {
  transform: translateY(-3px);
}

.hero {
  padding: 90px 0 40px;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--baby-blue);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--baby-blue), var(--lightning-blue), #ffffff);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn {
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  color: var(--deep-blue);
  box-shadow: 0 18px 45px rgba(57,168,255,0.30);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--baby-blue);
}

.stat span {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

.stat-print {
  max-width: 450px;
}

.stat-print span {
  max-width: 28ch;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
	transform: translateY(-120px)!important; 
}

.art-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.08;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.glow-orb,
.floating-card,
.ring,
.grid-noise,
.spark {
  position: absolute;
}

.glow-orb {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(16px);
  background: radial-gradient(circle, rgba(123,200,255,0.9), rgba(57,168,255,0.18), transparent 70%);
  animation: floatOrb 10s ease-in-out infinite;
}

.orb-1 { top: 8%; left: 10%; }

.orb-2 {
  width: 180px;
  height: 180px;
  bottom: 8%;
  right: 8%;
  animation-delay: -3s;
  background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(57,168,255,0.18), transparent 72%);
}

@keyframes floatOrb {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-18px) translateX(10px) scale(1.05); }
}

.ring {
  inset: 12%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  animation: spinSlow 18s linear infinite;
}

.ring::before,
.ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(207,239,255,0.18);
}

.ring::before {
  inset: 10%;
}

.ring::after {
  inset: 22%;
}


@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.grid-noise {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  opacity: 0.35;
}

.floating-card {
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: floatCard 7s ease-in-out infinite;
}

.floating-card.card-1 {
  width: 62%;
  height: 34%;
  top: 14%;
  left: 10%;
}

.floating-card.card-2 {
  width: 46%;
  height: 26%;
  right: 8%;
  top: 24%;
  animation-delay: -2s;
}

.floating-card.card-3 {
  width: 58%;
  height: 28%;
  left: 18%;
  bottom: 12%;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}

.card-content {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-top {
  display: flex;
  gap: 8px;
}

.mini-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.shape-row,
.line-stack,
.logo-grid {
  display: flex;
  gap: 12px;
  align-items: center;
}

.shape {
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  box-shadow: 0 12px 24px rgba(57,168,255,0.25);
}

.shape.a { width: 45%; height: 72px; }
.shape.b { width: 22%; height: 72px; border-radius: 50%; }
.shape.c { width: 32%; height: 72px; }

.line-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.line-stack span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
}

.line-stack span:nth-child(1) { width: 72%; }
.line-stack span:nth-child(2) { width: 100%; }
.line-stack span:nth-child(3) { width: 48%; background: linear-gradient(90deg, var(--baby-blue), var(--lightning-blue)); }

.logo-grid {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.logo-grid span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}

.logo-grid span::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
}

.spark {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,255,255,0.8);
  animation: sparkle 4s infinite ease-in-out;
}

.spark.s1 { top: 12%; right: 18%; }
.spark.s2 { bottom: 20%; left: 10%; animation-delay: 1s; }
.spark.s3 { top: 48%; right: 10%; animation-delay: 2.2s; }

@keyframes sparkle {
  0%,100% { transform: scale(0.8); opacity: 0.45; }
  50% { transform: scale(1.6); opacity: 1; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.glass-card {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glass-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.glass-card p {
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
	
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--baby-blue);
  font-size: 0.92rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  position: relative;
  min-height: 420px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.project-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: var(--baby-blue);
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.project-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.project-card p {
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
}

.project-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--baby-blue);
  font-weight: 600;
}

.brand-preview,
.motion-preview {
  margin-top: 26px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  min-height: 210px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.brand-preview {
  display: grid;
  place-items: center;
  padding: 24px;
}

.brand-board {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.brand-tile {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.brand-tile::before,
.brand-tile::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  opacity: 0.92;
}

.brand-tile:nth-child(1)::before {
  width: 88px;
  height: 88px;
  top: 16px;
  left: 16px;
}

.brand-tile:nth-child(1)::after {
  width: 120px;
  height: 24px;
  border-radius: 999px;
  bottom: 18px;
  left: 16px;
}

.brand-tile:nth-child(2)::before {
  inset: 18px;
  border-radius: 24px;
}

.brand-tile:nth-child(2)::after {
  width: 46px;
  height: 46px;
  bottom: 16px;
  right: 16px;
  background: var(--white);
}

.brand-tile:nth-child(3)::before {
  width: 100px;
  height: 100px;
  bottom: -8px;
  right: -8px;
}

.brand-tile:nth-child(3)::after {
  width: 110px;
  height: 12px;
  top: 24px;
  left: 18px;
  border-radius: 999px;
  background: var(--white);
}

.brand-tile:nth-child(4)::before {
  width: 72px;
  height: 72px;
  top: 18px;
  right: 20px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border-radius: 0;
}

.brand-tile:nth-child(4)::after {
  width: 55%;
  height: 16px;
  bottom: 20px;
  left: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
}

.motion-preview {
  display: grid;
  place-items: center;
  padding: 24px;
}

.motion-stage {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 210px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(207,239,255,0.18), rgba(57,168,255,0.08));
}

.motion-ball,
.motion-square,
.motion-line {
  position: absolute;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  box-shadow: 0 10px 30px rgba(57,168,255,0.28);
}

.motion-ball {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  top: 24px;
  left: 20px;
  animation: ballMove 4.4s infinite ease-in-out;
}

.motion-square {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  bottom: 24px;
  right: 20px;
  animation: squareMove 4.4s infinite ease-in-out;
}

.motion-line {
  width: 160px;
  height: 14px;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: linePulse 2.2s infinite ease-in-out;
}

@keyframes ballMove {
  0%,100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(250px, 30px) scale(1.08); }
  50% { transform: translate(210px, 95px) scale(0.92); }
  75% { transform: translate(40px, 120px) scale(1.02); }
}

@keyframes squareMove {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(-230px, -70px) rotate(18deg); }
  50% { transform: translate(-160px, -120px) rotate(56deg); }
  75% { transform: translate(-20px, -40px) rotate(10deg); }
}

@keyframes linePulse {
  0%,100% { opacity: 0.45; transform: translate(-50%, -50%) scaleX(0.85); }
  50% { opacity: 1; transform: translate(-50%, -50%) scaleX(1.15); }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--baby-blue);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item a {
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}

form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

input:focus,
textarea:focus {
  border-color: rgba(123,200,255,0.8);
  box-shadow: 0 0 0 4px rgba(123,200,255,0.16);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  padding: 36px 0 54px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 17, 31, 0.42);
  backdrop-filter: blur(10px);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255,255,255,0.75);
}

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: var(--transition);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  color: var(--deep-blue);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(57,168,255,0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1200;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 80px 0;
  }

  .input-row,
  .brand-board {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-stats,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card {
    min-height: auto;
  }

  .site-header {
    position: sticky;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.photo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: visible;
}

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow:
    0 20px 50px rgba(57,168,255,0.20),
    0 0 30px rgba(123,200,255,0.18);
  animation: floatPhoto 5s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* glowing blurred shape behind photo */
.photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 38px;
  background: linear-gradient(
    135deg,
    rgba(57,168,255,0.45),
    rgba(207,239,255,0.28),
    rgba(255,255,255,0.08)
  );
  filter: blur(22px);
  z-index: -2;
  animation: pulseGlow 3.5s ease-in-out infinite;
}

/* animated gradient border */
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(207,239,255,0.9),
    rgba(57,168,255,0.95),
    rgba(255,255,255,0.75)
  );
  background-size: 300% 300%;
  animation: borderShift 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.photo-frame img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* moving shine overlay */
.photo-shine {
  position: absolute;
  top: -20%;
  left: -75%;
  width: 45%;
  height: 160%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.10) 65%,
    transparent 100%
  );
  transform: rotate(18deg);
  pointer-events: none;
  animation: shineSweep 4.6s ease-in-out infinite;
  z-index: 2;
}

/* hover effect */
.photo-card:hover .photo-frame {
  transform: perspective(1000px) rotateY(-6deg) rotateX(4deg) translateY(-6px);
  box-shadow:
    0 28px 65px rgba(57,168,255,0.28),
    0 0 40px rgba(123,200,255,0.24);
}

.photo-card:hover .photo-frame img {
  transform: scale(1.06);
  filter: brightness(1.04) contrast(1.03);
}

@keyframes floatPhoto {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes borderShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes shineSweep {
  0% {
    left: -75%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    left: 140%;
    opacity: 0;
  }
}

/* cartoon overlay container */
.cartoon-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* floating bubbles */
.bubble {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #39a8ff, #cfefff);
  opacity: 0.7;
  animation: floatBubble 6s infinite ease-in-out;
}

.b1 { top: 40%; left: 15%; animation-delay: 0s; }
.b2 { top: 80%; right: 20%; animation-delay: 2s; }
.b3 { bottom: 15%; left: 25%; animation-delay: 4s; }

@keyframes floatBubble {
  0%,100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.2);
  }
}

/* cartoon eyes */
/* cartoon eyes container */
.eyes {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 18px;
  z-index: 5;
}

.eye {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.2),
    inset 0 2px 4px rgba(0,0,0,0.08);
  overflow: hidden;
  animation: blink 3.5s infinite;
}

.pupil {
  width: 9px;
  height: 9px;
  background: #08111f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
}

.pupil::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
}

@keyframes blink {
  0%, 92%, 100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.08);
  }
}

.doodle-outline {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  pointer-events: none;
}

.doodle-outline path {
  fill: none;
  stroke: #39a8ff;
  stroke-width: 2;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.photo-card:hover img {
  animation: glitch 0.3s;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-1px, 1px); }
  80% { transform: translate(1px, -1px); }
  100% { transform: translate(0); }
}

.photo-frame::before {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: sparkle 2s infinite ease-in-out;
}

@keyframes sparkle {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.stat-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.stat-link:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card-link:hover .project-card {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.branding-hero {
  padding-top: 120px;
  padding-bottom: 70px;
}

.branding-page-title {
  max-width: 800px;
  margin-top: 16px;
}

.branding-page-subtitle {
  max-width: 760px;
}

.branding-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.branding-project-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.branding-project-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.branding-project-link:hover .branding-project-card,
.branding-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 33, 68, 0.24);
}

.branding-project-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.branding-project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.branding-project-link:hover .branding-project-image {
  transform: scale(1.04);
}

.branding-project-content {
  padding: 24px;
}

.branding-project-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  margin: 14px 0 12px;
}

.branding-project-content p {
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.branding-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.branding-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--baby-blue);
  font-size: 0.88rem;
}

.branding-project-placeholder {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(207,239,255,0.16), rgba(57,168,255,0.08));
}

.placeholder-orb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  filter: blur(4px);
  opacity: 0.9;
}

.placeholder-lines {
  position: absolute;
  display: grid;
  gap: 14px;
}

.placeholder-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
}

.placeholder-lines span:nth-child(1) {
  width: 150px;
}

.placeholder-lines span:nth-child(2) {
  width: 210px;
}

.placeholder-lines span:nth-child(3) {
  width: 120px;
}

.branding-cta-section {
  padding-top: 40px;
}

.branding-cta-card {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  text-align: center;
}

.branding-cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.branding-cta-card p {
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 980px) {
  .branding-project-grid {
    grid-template-columns: 1fr;
  }

  .branding-cta-card {
    text-align: left;
  }

  .branding-cta-card p {
    margin-left: 0;
  }
}

.branding-hero {
  padding-top: 120px;
  padding-bottom: 70px;
}

.branding-page-title {
  max-width: 800px;
  margin-top: 16px;
}

.branding-page-subtitle {
  max-width: 760px;
}

.branding-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.branding-project-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.branding-project-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.branding-project-link:hover .branding-project-card,
.branding-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 33, 68, 0.24);
}

.branding-project-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.branding-project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.active-image {
  animation: floatLogo 5s ease-in-out infinite;
}

.phoenix-card .branding-project-image {
  animation: none !important;
  transform: none !important;
}

.branding-project-link:hover .branding-project-image {
  transform: scale(1.04);
}

.branding-project-content {
  padding: 24px;
}

.branding-project-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  margin: 14px 0 12px;
}

.branding-project-content p {
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.branding-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.branding-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--baby-blue);
  font-size: 0.88rem;
}

.branding-project-placeholder {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(207,239,255,0.16), rgba(57,168,255,0.08));
}

.placeholder-orb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lightning-blue), var(--baby-blue));
  filter: blur(4px);
  opacity: 0.9;
}

.placeholder-lines {
  position: absolute;
  display: grid;
  gap: 14px;
}

.placeholder-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
}

.placeholder-lines span:nth-child(1) {
  width: 150px;
}

.placeholder-lines span:nth-child(2) {
  width: 210px;
}

.placeholder-lines span:nth-child(3) {
  width: 120px;
}

.branding-cta-section {
  padding-top: 40px;
}

.branding-cta-card {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  text-align: center;
}

.branding-cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.branding-cta-card p {
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 980px) {
  .branding-project-grid {
    grid-template-columns: 1fr;
  }

  .branding-cta-card {
    text-align: left;
  }

  .branding-cta-card p {
    margin-left: 0;
  }
}

.contact-subtitle {
  max-width: 1000px;
}

.about-subtitle {
  max-width: 1000px;
}

.work-subtitle {
  max-width: 1000px;
}

.project-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}



@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.branding-project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
	
}

@keyframes floatLogo {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.branding-project-card:hover .branding-project-image {
  transform: scale(1.05) translateY(-5px);
  transition: 0.4s ease;
}

.branding-project-image {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.branding-project-card:hover .branding-project-image {
  filter: drop-shadow(0 20px 40px rgba(57,168,255,0.4));
}
.case-hero {
  padding-top: 10px;
  padding-bottom: 20px;
}

.case-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.case-subtitle {
  max-width: 1000px;
  line-height: 1.8;
  margin: 0;
}

.hero-image-section {
  padding-top: 0;
  padding-bottom: 20px;
}

.case-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 18px;
}

.case-img.hero {
  max-width: 520px;
  margin: 0;
}

.section.case-overview {
  padding-top: 20px;
  padding-bottom: 20px;
	font-size: 1.5rem;     /* same size */
  
}

.case-overview {
  margin-top: 0;
}

.case-block {
  margin-bottom: 20px;
	display: flex;
  flex-direction: column;
  gap: 20px; 
	
}

.moodboard-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.moodboard-img {
  margin-bottom: 6px;
}

.case-copy h2 {
  margin: 0 0 6px 0;
}

.case-text {
  margin: 0;
}

.case-process {
  padding-top: 0;
  padding-bottom: 20px;
}

.case-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-img:hover {
  transform: scale(1.03); /* 🔥 zoom */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.hero-image-section {
  padding-top: 0 !important;   /* 🔥 removes space above image */
  margin-top: -500px;           /* 🔥 pulls image UP */
}
.section.hero-tight {
  padding-top: 20px;
  padding-bottom: 20px;
}

.case-section-title {
  font-size: 1.8rem;     /* same size */
  font-weight: 600;
  margin-bottom: 10px;
}

.case-text {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0;
}

.brand-elements-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin-bottom: 0;
}

.brand-elements-row .case-img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .brand-elements-row {
    grid-template-columns: 1fr;
  }
}

.branding-project-card:not(:first-child) .branding-project-image {
  animation: none !important;
  transform: none !important;
}

.collab-card .branding-project-image {
  animation: none !important;
  transform: none !important;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;

  /* Gradient */
  background: linear-gradient(90deg, #4da3ff, #bcdff5);
  color: #0b1f33;

  /* Smooth look */
  box-shadow: 0 8px 20px rgba(77, 163, 255, 0.3);
  transition: all 0.3s ease;
}

/* Hover effect */
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(77, 163, 255, 0.4);
}

/* Click effect */
.contact-btn:active {
  transform: scale(0.98);
}