
/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(280px, 60vw, 600px);
  height: clamp(280px, 60vw, 600px);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 145, 125, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}
body:hover .cursor-glow { opacity: 1; }
.cursor-glow.is-touch-active { opacity: 1; }

/* ============================================
   TOUCH RIPPLE (mobile tap effect)
   ============================================ */
.touch-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 145, 125, 0.55) 0%, rgba(241, 145, 125, 0.18) 40%, transparent 70%);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0.95;
  animation: touchRippleExpand 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes touchRippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-color: var(--line);
  background: rgba(15, 13, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 56px);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  z-index: 101;
}

.nav__logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.62);
  background: var(--coral-dim);
  color: var(--coral);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 900;
}

.nav__logo-text {
  font-size: 0.95rem;
}

.nav__menu {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.94rem;
  color: rgba(255, 248, 239, 0.76);
}

.nav__menu a {
  position: relative;
  transition: color 0.2s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav Active Link */
.nav__menu a.is-active {
  color: var(--coral);
}
.nav__menu a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: var(--coral-dim);
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}
.nav__cta:hover {
  background: var(--coral);
  color: #160f10;
  transform: translateY(-2px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 248, 239, 0.2);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #160f10;
}
.btn--primary:hover {
  background: #e87e68;
  box-shadow: 0 8px 30px rgba(241, 145, 125, 0.3);
}

.btn--ghost {
  background: rgba(255, 248, 239, 0.06);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 248, 239, 0.12);
  border-color: rgba(255, 248, 239, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Dynamic Background */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(241, 145, 125, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(122, 215, 207, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(242, 199, 111, 0.06) 0%, transparent 50%);
  animation: atmospherePulse 8s ease-in-out infinite alternate;
}

@keyframes atmospherePulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 239, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(241, 145, 125, 0.5), transparent),
    radial-gradient(1px 1px at 25% 60%, rgba(122, 215, 207, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 15%, rgba(242, 199, 111, 0.5), transparent),
    radial-gradient(1px 1px at 55% 75%, rgba(241, 145, 125, 0.3), transparent),
    radial-gradient(2px 2px at 70% 35%, rgba(122, 215, 207, 0.4), transparent),
    radial-gradient(1px 1px at 85% 55%, rgba(242, 199, 111, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 15% 80%, rgba(241, 145, 125, 0.4), transparent),
    radial-gradient(1px 1px at 60% 10%, rgba(122, 215, 207, 0.3), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(241, 145, 125, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 35% 45%, rgba(242, 199, 111, 0.4), transparent);
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Hero Text */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.6);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

.hero__line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero__line--gradient {
  background: linear-gradient(135deg, var(--coral), var(--lime), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__line--sub {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 500;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.hero__quote {
  position: relative;
  margin: 0 0 24px;
  padding-left: 24px;
  border-left: 2px solid var(--coral);
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero__quote-mark {
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 2.5rem;
  color: var(--coral);
  opacity: 0.3;
  font-family: var(--font-heading);
  line-height: 1;
}

.hero__quote p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.hero__quote em {
  color: var(--text);
  font-style: normal;
  font-weight: 700;
}

.hero__desc {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

/* Avatar / Logo Ring */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.avatar {
  position: relative;
  width: clamp(280px, 30vw, 400px);
  height: clamp(280px, 30vw, 400px);
  margin: 0 auto;
}

.avatar__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.avatar__ring--1 {
  inset: 0;
  border-color: rgba(241, 145, 125, 0.2);
  animation: ringRotate 20s linear infinite;
}
.avatar__ring--1::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

.avatar__ring--2 {
  inset: 6%;
  border-color: rgba(122, 215, 207, 0.18);
  animation: ringRotate 15s linear infinite reverse;
}
.avatar__ring--2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 30%;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar__core {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(241, 145, 125, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 145, 125, 0.10), transparent 60%),
    rgba(33, 25, 28, 0.6);
  box-shadow: 0 0 60px rgba(241, 145, 125, 0.18), inset 0 0 30px rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
}

.avatar__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(241, 145, 125, 0.28));
}

/* Floating Tags */
.avatar__tag {
  position: absolute;
  padding: 6px 14px;
  background: rgba(33, 25, 28, 0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  animation: tagFloat 6s ease-in-out infinite;
}

.avatar__tag--1 { top: 15%; left: -30%; animation-delay: 0s; }
.avatar__tag--2 { top: 45%; right: -35%; animation-delay: 1s; }
.avatar__tag--3 { bottom: 25%; left: -25%; animation-delay: 2s; }
.avatar__tag--4 { top: 5%; right: -20%; animation-delay: 0.5s; }
.avatar__tag--5 { bottom: 5%; right: -15%; animation-delay: 1.5s; }
.avatar__tag--6 { bottom: 45%; left: -35%; animation-delay: 2.5s; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.stat {
  padding: 24px 20px;
  background: rgba(33, 25, 28, 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
}

.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat--accent .stat__num { color: var(--coral); }

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 248, 239, 0.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--coral);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 18, 21, 0.8);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track span {
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: rgba(255, 248, 239, 0.6);
  white-space: nowrap;
}

.marquee__track span::before {
  content: '✦';
  color: var(--coral);
  margin-right: 24px;
}

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

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(23, 18, 21, 1) 0%, var(--bg) 100%);
}

.section__head {
  margin-bottom: 56px;
  max-width: 800px;
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section__kicker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about__text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 20px;
}

.about__lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
  color: var(--text) !important;
  font-weight: 500;
}

.about__pull {
  position: relative;
  padding: 20px 24px;
  margin: 28px 0;
  border-left: 3px solid var(--coral);
  background: rgba(241, 145, 125, 0.06);
}
.about__pull em {
  font-style: normal;
  color: var(--text);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.about__card {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.about__card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.about__card-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.about__card-value {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
}

.about__card-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.about__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.about__card-cta:hover {
  gap: 12px;
}

/* ============================================
   MANIFESTO
   ============================================ */
.section--manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(241, 145, 125, 0.06) 0%, transparent 70%);
}

.manifesto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  counter-reset: manifesto;
}

.manifesto__item {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.6), rgba(24, 31, 33, 0.6));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.manifesto__item:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.manifesto__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.manifesto__head {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.manifesto__head em {
  font-style: normal;
  background: linear-gradient(135deg, var(--coral), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto__body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.manifesto__body em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  position: relative;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.service:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.1), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
}

.service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
}
.service__icon svg {
  width: 22px;
  height: 22px;
}

.service__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.service__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service__desc em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.service__bullets {
  margin-bottom: 20px;
  flex: 1;
}
.service__bullets li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 4px 0;
}

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.25s var(--ease);
  margin-top: auto;
}
.service__cta:hover { gap: 14px; }

/* ============================================
   SKILLS / TOOLS
   ============================================ */
.skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.skill-card:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.skill-card--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.08), rgba(242, 199, 111, 0.04)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.2);
}

.skill-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
  margin-bottom: 20px;
}
.skill-card__icon svg {
  width: 22px;
  height: 22px;
}

.skill-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.skill-card p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.skill-card__list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 248, 239, 0.06);
  transition: color 0.2s;
}
.skill-card__list li:last-child {
  border-bottom: none;
}
.skill-card:hover .skill-card__list li {
  color: var(--text);
}

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--coral) 0%,
    rgba(241, 145, 125, 0.3) 50%,
    rgba(255, 248, 239, 0.08) 100%
  );
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}
.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  background: var(--bg);
  z-index: 1;
  transition: all 0.3s var(--ease);
}

.timeline__item:first-child .timeline__dot {
  background: var(--coral);
  box-shadow: 0 0 16px rgba(241, 145, 125, 0.5);
}

.timeline__content {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.8), rgba(24, 31, 33, 0.8));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.timeline__content:hover {
  border-color: rgba(241, 145, 125, 0.25);
  transform: translateX(6px);
}

.timeline__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.timeline__date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
}

.timeline__tag {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--muted);
}
.timeline__tag--active {
  border-color: rgba(122, 215, 207, 0.5);
  color: var(--cyan);
  background: rgba(122, 215, 207, 0.08);
}

.timeline__role {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.timeline__points li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.timeline__points li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 0.85rem;
}
.timeline__points li strong {
  color: var(--text);
}

/* ============================================
   COURSE
   ============================================ */
.course {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.course__info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.course__info p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

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

.course__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.course__features svg { color: var(--cyan); flex-shrink: 0; }

.course__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(242, 199, 111, 0.35);
  background: rgba(15, 13, 16, 0.7);
  text-align: center;
}

.course__card-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.course__card-price {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lime);
  line-height: 1;
}

/* ============================================
   WORKS
   ============================================ */
.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.work:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.work__img {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.work:hover .work__img img {
  transform: scale(1.05);
}

.work__info {
  padding: clamp(18px, 3vw, 28px);
}

.work__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.work__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.work__desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.works__more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}

.testimonial:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial__stars {
  font-size: 1rem;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(241, 145, 125, 0.2);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__author strong {
  font-size: 0.95rem;
}
.testimonial__author span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.package:hover {
  border-color: rgba(241, 145, 125, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.package--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.12), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.25);
}

.package__type {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.package h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.package p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.package strong {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--lime);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.faq__item:hover {
  border-color: rgba(241, 145, 125, 0.25);
}

.faq__item[open] {
  border-color: rgba(241, 145, 125, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq__q {
  padding: clamp(18px, 3vw, 24px);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  user-select: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__q:hover {
  color: var(--coral);
}

.faq__a {
  padding: 0 clamp(18px, 3vw, 24px) clamp(18px, 3vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--line);
  animation: faqSlideDown 0.3s var(--ease);
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ----- Contact Form ----- */
.contact-form {
  text-align: left;
  margin: 0 auto 36px;
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.contact-form__row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

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

.contact-form__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-form__req {
  color: var(--coral);
  margin-left: 2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(15, 13, 16, 0.55);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.5;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.contact-form select {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23cabcb0' stroke-width='1.6' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(202, 188, 176, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  background: rgba(15, 13, 16, 0.8);
}

.contact-form__submit {
  margin-top: 6px;
  justify-self: start;
  position: relative;
  cursor: pointer;
}

.contact-form__spinner {
  display: none;
  animation: contactFormSpin 0.9s linear infinite;
  margin-left: 4px;
}

.contact-form.is-submitting .contact-form__submit {
  pointer-events: none;
  opacity: 0.75;
}
.contact-form.is-submitting .contact-form__spinner {
  display: inline-block;
}

@keyframes contactFormSpin {
  to { transform: rotate(360deg); }
}

.contact-form__status {
  font-size: 0.92rem;
  min-height: 1.4em;
  margin: 0;
}

.contact-form__status.is-success { color: var(--cyan); }
.contact-form__status.is-error { color: #ec6a6a; }

.contact-form__note {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.7;
  margin: -4px 0 0;
  line-height: 1.6;
}

.contact-form.is-success > *:not(.contact-form__status) {
  display: none;
}
.contact-form.is-success {
  text-align: center;
  padding: 48px 32px;
}
.contact-form.is-success .contact-form__status {
  font-size: 1.05rem;
  color: var(--cyan);
}

.contact__alt {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 28px;
}

.contact__alt-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .contact-form { padding: 24px 20px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact__info p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact__info .btn {
  margin-bottom: 0;
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact__social {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.6);
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.contact__social svg {
  width: 22px;
  height: 22px;
}

.contact__social:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.contact__social--ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  border-color: transparent;
  color: #fff;
}

.contact__social--fb:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contact__links a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.contact__links a:hover {
  border-color: var(--coral);
  color: var(--text);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__copy {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: rgba(33, 25, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--coral);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coral);
  color: #160f10;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(241, 145, 125, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

