:root {
  --color-dark: #0f172a;
  --color-text: #1e293b;
  --color-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-soft: #f8fafc;
  --color-line: rgba(148, 163, 184, 0.18);
  --color-purple: #6d28d9;
  --color-blue: #2563eb;
  --color-cyan: #06b6d4;
  --color-orange: #f97316;
  --color-pink: #f43f5e;
  --color-yellow: #facc15;
  --gradient-main: linear-gradient(135deg, #1e3a8a 0%, #2563eb 15%, #06b6d4 30%, #9333ea 50%, #f43f5e 70%, #fb923c 85%, #facc15 100%);
  --gradient-cta: linear-gradient(90deg, #f97316, #f43f5e);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.56));
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.09);
  --shadow-strong: 0 30px 90px rgba(15, 23, 42, 0.17);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.1), transparent 24%),
    radial-gradient(circle at 50% 35%, rgba(244, 63, 94, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #f8fafc 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(95px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.48;
  animation: floatBlob 14s ease-in-out infinite;
}
.ambient-a {
  width: 360px; height: 360px; left: -90px; top: -60px;
  background: rgba(37, 99, 235, 0.28);
}
.ambient-b {
  width: 420px; height: 420px; right: -120px; top: 110px;
  background: rgba(249, 115, 22, 0.22);
  animation-delay: -4s;
}
.ambient-c {
  width: 320px; height: 320px; left: 42%; top: 38%;
  background: rgba(147, 51, 234, 0.13);
  animation-delay: -8s;
}

.glass {
  background: var(--gradient-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 60;
  width: min(calc(100% - 24px), calc(var(--container) + 24px));
  margin: 16px auto 0;
  border-radius: 24px;
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  gap: 26px;
  font-weight: 700;
  color: var(--color-dark);
}

.nav a,
.lang-link {
  position: relative;
}

.nav a::after,
.lang-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-cta);
  transition: width 0.28s ease;
}

.nav a:hover::after,
.lang-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-link {
  color: var(--color-muted);
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}


.btn:hover { transform: scale(1.04); }

.btn-primary {
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: 0 16px 44px rgba(249, 115, 22, 0.34);
}
.btn-primary:hover {
  box-shadow: 0 22px 56px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #7c3aed 80%, #9333ea 100%);
  border: none;
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.30);
}
.btn-secondary:hover {
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.38);
}

.mobile-toggle, .mobile-menu { display: none; }

.section { padding: 104px 0; }
.section-sm { padding: 12px 0 0; }
.hero { padding-top: 70px; }

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
  align-items: center;
}

.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(148,163,184,0.2);
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.04;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.25rem);
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(45px, 8vw, 80px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0b132b;
  margin: 0;
}
.text-gradient {
  display: inline-block;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 35%, #f43f5e 68%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.00;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

p, li, span {
  font-size: 1.02rem;
  line-height: 1.78;
}

p { color: var(--color-muted); }

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.12em;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.hero-stats .stat:nth-child(1) {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.hero-stats .stat:nth-child(2) {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.hero-stats .stat:nth-child(3) {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.logo-stage {
  position: absolute;
  inset: 80px 50px 150px 50px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
}

.logo-glow,
.logo-ring,
.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.logo-glow {
  inset: 18% 20%;
  background: radial-gradient(circle, rgba(244,63,94,0.18), rgba(249,115,22,0.16), rgba(37,99,235,0.12), transparent 70%);
  filter: blur(24px);
  animation: breathe 5s ease-in-out infinite;
}

.logo-ring {
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.08);
}
.logo img {
  height: 46px;
  transform: scale(1.05);
}
.logo {
  position: relative;
  display: inline-block;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(249,115,22,0.25), rgba(147,51,234,0.2), transparent 70%);
  filter: blur(25px);
  z-index: -1;
  opacity: 0.9;
}
.logo:hover::after {
  opacity: 1;
  transform: scale(1.1);
}
.ring-a {
  width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: spinSlow 14s linear infinite;
}
.ring-b {
  width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: spinSlowReverse 11s linear infinite;
}

.hero-logo {
  position: absolute;
  left: 50%; top: 50%;
  width: min(86%, 620px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 50px rgba(15,23,42,0.22));
  animation: logoFloat 7s ease-in-out infinite;
}

.hero-orbit {
  border: 1px dashed rgba(109, 40, 217, 0.16);
}
.orbit-1 {
  width: 540px; height: 540px; right: 22px; top: 40px;
  animation: spinSlow 18s linear infinite;
}
.orbit-2 {
  width: 670px; height: 670px; right: -45px; top: -14px;
  animation: spinSlowReverse 24s linear infinite;
}
.orbit-3 {
  width: 780px; height: 780px; right: -88px; top: -56px;
  border-color: rgba(249, 115, 22, 0.12);
  animation: spinSlow 30s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}
.chip-b { top: 20%; right: 10%; animation: bob 6.5s ease-in-out infinite -1.2s; }
.chip-c { bottom: 14%; left: 50%; transform: translateX(-50%); animation: bob 5.8s ease-in-out infinite -2s; }

.floating-panel {
  position: absolute;
  width: 290px;
  padding: 18px;
  border-radius: 28px;
}
a.hero-panel-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.panel-a { left: 0; bottom: 70px; }
.panel-b { right: 0; top: 100px; }
.panel-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(249,115,22,0.10);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #f97316, #f43f5e);
}
.panel-label.alt {
  background-color: transparent;
  background-image: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #7c3aed 80%, #9333ea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.panel-art {
  position: relative;
  height: 210px;
  border-radius: 22px;
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.08));
}
.hero-carousel {
  isolation: isolate;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}
.carousel-slides,
.carousel-slide {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12) rotate(-2.5deg);
  filter: blur(14px) saturate(1.08);
  transition:
    opacity 0.85s ease,
    transform 1.25s cubic-bezier(.22,.61,.36,1),
    filter 1.25s ease,
    clip-path 1.1s cubic-bezier(.22,.61,.36,1);
  clip-path: inset(0 0 100% 0 round 22px);
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 38%, rgba(15,23,42,0.08) 100%),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.24), transparent 26%);
}
.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0) saturate(1.02);
  clip-path: inset(0 0 0 0 round 22px);
  z-index: 2;
}
.carousel-slide.is-previous {
  opacity: 0;
  transform: scale(1.06) rotate(2.4deg);
  filter: blur(8px);
  clip-path: inset(100% 0 0 0 round 22px);
  z-index: 1;
}
.carousel-glow,
.carousel-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.carousel-glow {
  z-index: 3;
  background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.2), transparent 48%);
}
.carousel-shine {
  z-index: 4;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.22) 42%, transparent 58%);
  transform: translateX(-130%);
  animation: heroShine 5.6s ease-in-out infinite;
}
.carousel-dots {
  position: absolute;
  z-index: 5;
  left: 16px;
  bottom: 14px;
  display: flex;
  gap: 7px;
}
.carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.35s ease, background 0.35s ease, width 0.35s ease;
  cursor: pointer;
}
.carousel-dots span.is-active {
  width: 22px;
  background: rgba(255,255,255,0.95);
}
.carousel-canvas::before,
.carousel-wallpaper::before {
  content: "";
  position: absolute;
  inset: auto auto 12px 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.45);
  color: rgba(255,255,255,0.96);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 800;
  z-index: 6;
  backdrop-filter: blur(12px);
}
.carousel-canvas::before { content: none; }
.carousel-wallpaper::before { content: none; }

.marquee {
  overflow: hidden;
  border-radius: 999px;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-weight: 800;
  color: var(--color-dark);
  white-space: nowrap;
}

.product-section { position: relative; }
.product-visual { position: relative; }
.product-copy p { max-width: 600px; }

.showcase-card {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.64);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.16), transparent 35%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}

.showcase-carousel {
  isolation: isolate;
}

.showcase-glow {
  position: absolute;
  inset: 14% 11% auto 11%;
  height: 52%;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.42), rgba(59,130,246,0.1) 48%, transparent 78%);
  filter: blur(28px);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.canvas-showcase .surface {
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: #e8eef8;
}
.canvas-showcase .frame-shadow {
  display: none;
}
.canvas-showcase .corner-shine {
  position: absolute;
  width: 220px; height: 220px;
  right: -20px; top: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
}

.wallpaper-showcase .surface {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #eef2f7;
}
.wallpaper-showcase .roll {
  display: none;
}
.wallpaper-showcase .gloss-line {
  position: absolute;
  left: 14%; right: 20%; top: 0;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.18) 38%, transparent 58%);
  animation: sweep 6s linear infinite;
}

.showcase-slides {
  position: relative;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(10px) saturate(1.08);
  transition: opacity 0.95s ease, transform 1.2s ease, filter 1.1s ease;
  will-change: opacity, transform, filter;
}

.showcase-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%, rgba(15,23,42,0.08)),
    linear-gradient(120deg, rgba(255,255,255,0.28) 0%, transparent 34%, rgba(255,255,255,0.12) 55%, transparent 76%);
  mix-blend-mode: screen;
}

.canvas-showcase .showcase-slide {
  background-position: center center;
}

.wallpaper-showcase .showcase-slide {
  background-position: center center;
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) saturate(1.02);
  z-index: 2;
}

.showcase-slide.is-previous {
  opacity: 0;
  transform: scale(1.03);
  filter: blur(4px) saturate(1.05);
  z-index: 1;
}

.showcase-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(255,255,255,0.22) 44%, transparent 58%);
  opacity: 0;
  transform: translateX(-28%);
  animation: showcaseSweep 5.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

.canvas-showcase .frame-shadow,
.canvas-showcase .corner-shine,
.wallpaper-showcase .roll,
.wallpaper-showcase .gloss-line {
  z-index: 3;
}

@keyframes showcaseSweep {
  0%, 52%, 100% {
    opacity: 0;
    transform: translateX(-32%);
  }
  58% {
    opacity: 0.75;
  }
  74% {
    opacity: 0.35;
    transform: translateX(28%);
  }
}

.feature-grid,
.experience-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid { margin: 26px 0 28px; }

.mini-card,
.exp-card,
.project-card,
.cta-box {
  border-radius: 26px;
}

.mini-card,
.exp-card {
  padding: 22px;
}

.feature-grid .mini-card:nth-child(1) {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.feature-grid .mini-card:nth-child(2) {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.feature-grid .mini-card:nth-child(3) {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head p {
  margin-top: 14px;
}

.exp-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--gradient-main);
  box-shadow: 0 12px 30px rgba(109,40,217,0.22);
}
.exp-icon-b { background: linear-gradient(135deg, #fb923c, #f43f5e); }
.exp-icon-c { background: linear-gradient(135deg, #06b6d4, #2563eb); }

.project-card {
  overflow: hidden;
  padding: 0;
}
.project-image {
  height: 250px;
}
.project-body { padding: 22px; }
.visual-home {
  background-image: url('../hero/projects/project-home.webp');
  background-size: cover;
  background-position: center;
}
.visual-hotel {
  background-image: url('../hero/projects/project-hotel.webp');
  background-size: cover;
  background-position: center;
}
.visual-studio {
  background-image: url('../hero/projects/project-studio.webp');
  background-size: cover;
  background-position: center;
}

.cta-section { padding-top: 24px; }
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: var(--shadow-strong);
}

/* ── Footer ── */
.site-footer {
  background: #0f172a;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 0;
  border-top: none;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(148,163,184,0.7);
  line-height: 1.75;
  max-width: 280px;
  margin: 0 0 24px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
  filter: drop-shadow(0 0 8px rgba(249,115,22,0.35)) drop-shadow(0 0 18px rgba(244,63,94,0.2));
  display: block;
  background: rgba(255,255,255,0.88);
  border-radius: 12px;
  padding: 8px 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(148,163,184,0.6);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
}

.footer-social-link:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.35);
  color: #a78bfa;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(148,163,184,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a::after {
  display: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: #7c3aed;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(148,163,184,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  padding: 20px 0;
  margin-top: 56px;
  text-align: left;
}

.footer-copy .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy span {
  font-size: 0.92rem;
  color: rgba(148,163,184,0.8);
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(148,163,184,0.8);
  font-weight: 500;
}

.footer-heart {
  color: #f43f5e;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

.magnetic-card,
.magnetic-btn {
  will-change: transform;
}

.pulse {
  animation: pulseGlow 2.6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spinSlowReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}
@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 16px 44px rgba(249, 115, 22, 0.28); }
  50% { box-shadow: 0 22px 56px rgba(249, 115, 22, 0.46); }
}
@keyframes sweep {
  from { transform: translateX(-25%); }
  to { transform: translateX(35%); }
}
@keyframes floatBlob {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(18px) translateX(8px); }
}

@media (max-width: 1100px) {
  .desktop-nav, .nav-actions { display: none; }
  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobile-toggle span {
    width: 20px; height: 2px; background: var(--color-dark); border-radius: 999px;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin: 0 16px 16px;
    padding: 16px;
    border-radius: 22px;
  }
  .mobile-menu.open { display: flex; }
  .hero-grid, .split-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-visual {
    min-height: 660px;
  }
  .hero-stats,
  .feature-grid,
  .experience-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .section { padding: 82px 0; }
  .hero { padding-top: 54px; }
  .site-header { top: 8px; margin-top: 8px; }
  .nav-wrap { min-height: 74px; }
  .brand img { height: 28px; }
  .hero-visual { min-height: 560px; }
  .logo-stage { inset: 64px 10px 170px 10px; }
  .hero-logo { width: 96%; }
  .floating-panel {
    position: relative;
    width: auto;
    left: auto; right: auto; top: auto; bottom: auto;
    margin-top: 18px;
  }
  .panel-a, .panel-b { width: 100%; }
  .hero-orbit, .logo-ring { display: none; }
  .chip-c { bottom: 10%; }
  .cta-box { padding: 26px; }
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-copy .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
.ticker-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin: -24px auto 40px;
  padding: 10px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
  will-change: transform;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  flex-shrink: 0;
}

.ticker-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.ticker-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(109,40,217,0.22), rgba(249,115,22,0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.ticker-item:hover {
  transform: translateY(-3px) scale(1.02);
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(109, 40, 217, 0.14);
  box-shadow:
    0 16px 36px rgba(109, 40, 217, 0.12),
    0 8px 22px rgba(249, 115, 22, 0.08);
}

.ticker-item:hover::before {
  opacity: 1;
}

.ticker-item:nth-child(1) { background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.15); }
.ticker-item:nth-child(2) { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.15); }
.ticker-item:nth-child(3) { background: rgba(244, 63, 94, 0.08); border-color: rgba(244, 63, 94, 0.15); }
.ticker-item:nth-child(4) { background: rgba(124, 58, 237, 0.08); border-color: rgba(124, 58, 237, 0.15); }
.ticker-item:nth-child(5) { background: rgba(5, 150, 105, 0.08); border-color: rgba(5, 150, 105, 0.15); }

.ticker-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-mask-left {
  left: 0;
  background: linear-gradient(to right, #f2f4f8 0%, rgba(242, 244, 248, 0) 100%);
}

.ticker-mask-right {
  right: 0;
  background: linear-gradient(to left, #f2f4f8 0%, rgba(242, 244, 248, 0) 100%);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
