﻿/* ==========================================================================
   Sina Nabatiyan â€” Personal Portfolio & Showcase
   Pure CSS3 with custom properties, RTL layout, and responsive design
   ========================================================================== */

@font-face {
  font-family: "IRANYekanXVF";
  src: url("/assets/fonts/IRANYekanXVF.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
:root {
  /* Color Palette â€” Dark + Colorful + Creative + Premium */
  --bg-main: #0a0c14;
  --bg-surface: #111422;
  --bg-card: #15192b;
  --bg-card-hover: #1b2038;
  --bg-glass: rgba(21, 25, 43, 0.7);
  --bg-glass-strong: rgba(17, 20, 34, 0.92);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(139, 92, 246, 0.4);
  --border-accent: rgba(6, 182, 212, 0.3);

  /* Primary Accent Colors */
  --accent-purple: #8b5cf6;
  --accent-purple-light: #a78bfa;
  --accent-purple-glow: rgba(139, 92, 246, 0.25);

  --accent-cyan: #06b6d4;
  --accent-cyan-light: #67e8f9;
  --accent-cyan-glow: rgba(6, 182, 212, 0.22);

  --accent-magenta: #ec4899;
  --accent-magenta-glow: rgba(236, 72, 153, 0.2);

  --accent-youtube: #ff0033;
  --accent-youtube-glow: rgba(255, 0, 51, 0.25);

  --accent-instagram: #e1306c;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  /* Typography Colors */
  --text-white: #f8fafc;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0a0c14;

  /* Fonts — IranYekanXVF */
  --font-persian:
    "IRANYekanXVF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-latin:
    "IRANYekanXVF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-base:
    "IRANYekanXVF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Layout Constants */
  --container-max-width: 1200px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  direction: rtl;
  overflow-x: clip;
  width: 100%;
}

body {
  font-variation-settings: "dots" 4;
  font-family: var(--font-base);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

/* Background Atmosphere Gradients */
.bg-ambient-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
  will-change: transform;
}

.orb-1 {
  width: 550px;
  height: 550px;
  top: -120px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.45) 0%,
    rgba(139, 92, 246, 0) 70%
  );
}

.orb-2 {
  width: 500px;
  height: 500px;
  top: 35%;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.35) 0%,
    rgba(6, 182, 212, 0) 70%
  );
}

.orb-3 {
  width: 600px;
  height: 600px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.25) 0%,
    rgba(236, 72, 153, 0) 70%
  );
}

/* Typography Helpers */
.font-latin {
  font-family: var(--font-latin);
  direction: ltr;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Navigation & Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 12, 20, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition:
    background var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-symbol {
  width: 100px;
  /* height: 42px; */
  border-radius: 12px;
  /* background-image: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan)); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: white; */
  /* font-weight: 900; */
  /* font-size: 1.1rem; */
  /* box-shadow: 0 4px 18px var(--accent-purple-glow); */
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-family: var(--font-latin);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--text-white);
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.38);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--accent-purple), #6366f1);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--accent-purple-glow);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Header Scrolled State */
.site-header.scrolled {
  background: rgba(10, 12, 20, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  z-index: 1002;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hamburger-box {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(14, 17, 30, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.25rem 2rem;
  z-index: 999;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-panel.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 540px;
  margin: 0 auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  min-height: 48px;
}

.mobile-nav-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active,
.mobile-nav-link:active {
  color: var(--text-white);
  background: rgba(139, 92, 246, 0.16);
  border-color: rgba(139, 92, 246, 0.35);
  padding-right: 1.35rem;
}

.mobile-nav-link:hover .mobile-nav-arrow,
.mobile-nav-link.active .mobile-nav-arrow,
.mobile-nav-link:active .mobile-nav-arrow {
  color: var(--accent-purple-light);
  transform: translateX(-4px);
}

.mobile-nav-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, #ff0033, #d90429);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px var(--accent-youtube-glow);
  transition: all var(--transition-fast);
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 51, 0.45);
}

/* ==========================================================================
   Scroll Reveal Animations
   Native CSS + IntersectionObserver
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-stagger-1 {
  transition-delay: 0.05s;
}
.reveal-stagger-2 {
  transition-delay: 0.12s;
}
.reveal-stagger-3 {
  transition-delay: 0.19s;
}
.reveal-stagger-4 {
  transition-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 1185px) {
  .brand-logo {
    gap: 0.5rem;
  }
  .brand-symbol {
    width: 80px;
  }
  .brand-title {
    font-size: 1.05rem;
    line-height: 1.2;
  }
  .brand-subtitle {
    font-size: 0.65rem;
  }
  .nav-links {
    gap: 0.2rem;
  }
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.90rem;
  }
  .nav-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }
}

/* Sections Base */
.section {
  padding: 6.5rem 0;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan-light);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  margin-bottom: 1.25rem;
}

.section-badge.purple {
  color: var(--accent-purple-light);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
}

.section-badge.magenta {
  color: #f472b6;
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.25);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), #6366f1);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
}

.btn-youtube {
  background: linear-gradient(135deg, #ff0033, #d90429);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-youtube-glow);
}

.btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 51, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline-cyan {
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan-light);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.btn-outline-cyan:hover {
  background: rgba(6, 182, 212, 0.16);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
  padding: 5rem 0 6rem;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
}

.hero-badge-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan-light);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  margin-bottom: 0;
}

.hero-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.hero-name {
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  background: linear-gradient(
    135deg,
    #ffffff 30%,
    var(--accent-purple-light) 75%,
    var(--accent-cyan-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-roles {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-purple-light);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.hero-roles span.separator {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-philosophy {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  padding-right: 1.2rem;
  border-right: 3px solid var(--accent-cyan);
  line-height: 1.7;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Visual / Portrait */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 390px;
}

.hero-glow-back {
  position: absolute;
  inset: -12px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.35),
    rgba(6, 182, 212, 0.25)
  );
  border-radius: 34px;
  filter: blur(26px);
  z-index: 0;
  opacity: 0.75;
}

.hero-portrait-card {
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 20px 45px -10px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(139, 92, 246, 0.15);
}

.hero-portrait-img {
  width: 100%;
  height: 440px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-portrait-card:hover .hero-portrait-img {
  transform: scale(1.02);
}

.hero-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(
    to top,
    rgba(10, 12, 20, 0.95) 10%,
    rgba(10, 12, 20, 0.6) 60%,
    transparent 100%
  );
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.portrait-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(17, 20, 34, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
}

.portrait-status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
}

.portrait-status-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

/* Floating Tag Badges */
.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(17, 20, 34, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-badge.badge-right {
  top: 10%;
  right: -12px;
  animation-delay: 0s;
}

.floating-badge.badge-left {
  bottom: 15%;
  left: -12px;
  animation-delay: 2s;
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
}

.floating-badge-icon.code {
  background: linear-gradient(135deg, var(--accent-purple), #6366f1);
}

.floating-badge-icon.video {
  background: linear-gradient(135deg, var(--accent-magenta), #f43f5e);
}

.floating-badge-text {
  display: flex;
  flex-direction: column;
}

.floating-badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

.floating-badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-latin);
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.about-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    var(--accent-purple-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-text-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.about-text-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-core-formula {
  background: rgba(10, 12, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.formula-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.formula-plus {
  color: var(--accent-purple-light);
  font-weight: 700;
}

.about-facts-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.fact-card:hover {
  background: var(--bg-card);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.fact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-light);
  flex-shrink: 0;
}

.fact-icon.cyan {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.25);
  color: var(--accent-cyan-light);
}

.fact-icon.pink {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.25);
  color: #f472b6;
}

.fact-details {
  display: flex;
  flex-direction: column;
}

.fact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.fact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

/* WHAT I DO SECTION */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.activity-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  background: var(--bg-card);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.activity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.activity-number {
  font-family: var(--font-latin);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-cyan);
  opacity: 0.8;
}

.activity-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-light);
  transition: all var(--transition-fast);
}

.activity-card:hover .activity-icon-wrap {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: white;
  border-color: transparent;
  transform: rotate(-5deg) scale(1.05);
}

.activity-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--text-white);
}

.activity-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex-grow: 1;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-tag {
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-family: var(--font-latin);
}

/* SKILLS SECTION */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.skill-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: border-color var(--transition-fast);
}

.skill-category-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
}

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.skill-cat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.skill-cat-icon.web {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.skill-cat-icon.video {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.skill-cat-icon.design {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.skill-cat-icon.content {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.skill-cat-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
}

.skill-cat-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-latin);
}

.skills-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.skill-badge:hover {
  background: var(--bg-card-hover);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.skill-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-purple);
}

.skill-badge.purple .skill-badge-dot {
  background: var(--accent-purple);
}
.skill-badge.cyan .skill-badge-dot {
  background: var(--accent-cyan);
}
.skill-badge.pink .skill-badge-dot {
  background: var(--accent-magenta);
}
.skill-badge.amber .skill-badge-dot {
  background: var(--accent-amber);
}

.skill-group-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skill-group-label::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* SPOTLIGHT SECTIONS: EDUCATION & CREATIVE */
.spotlight-card {
  background: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    var(--bg-surface) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.spotlight-card.creative {
  border-color: rgba(236, 72, 153, 0.2);
}

.spotlight-card.creative::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    var(--accent-magenta-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.spotlight-lead {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.spotlight-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.spotlight-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spotlight-card.creative .feature-check-icon {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
}

/* Spotlight Interactive Showcase Box */
.spotlight-visual-box {
  background: rgba(10, 12, 20, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.code-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dot.red {
  background: #ff5f56;
}
.mockup-dot.yellow {
  background: #ffbd2e;
}
.mockup-dot.green {
  background: #27c93f;
}

.mockup-title {
  font-family: var(--font-latin);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.code-snippet {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  direction: ltr;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.code-kw {
  color: #f472b6;
}
.code-fn {
  color: #60a5fa;
}
.code-str {
  color: #34d399;
}
.code-cmt {
  color: #64748b;
  font-style: italic;
}

/* Creative Suite Visual Showcase */
.creative-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.creative-tool-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.creative-tool-item:hover {
  background: var(--bg-card);
  border-color: rgba(236, 72, 153, 0.35);
  transform: translateY(-2px);
}

.adobe-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adobe-pr {
  background: #00005b;
  color: #9999ff;
  border: 1px solid #9999ff;
}
.adobe-ae {
  background: #00005b;
  color: #d291ff;
  border: 1px solid #d291ff;
}
.adobe-au {
  background: #00005b;
  color: #00e5c9;
  border: 1px solid #00e5c9;
}
.adobe-ps {
  background: #001e36;
  color: #31a8ff;
  border: 1px solid #31a8ff;
}
.adobe-ai {
  background: #330000;
  color: #ff9a00;
  border: 1px solid #ff9a00;
}

.creative-tool-info {
  display: flex;
  flex-direction: column;
}

.creative-tool-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  font-family: var(--font-latin);
}

.creative-tool-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* YOUTUBE CHANNELS SECTION */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.6);
}

.channel-card.kooche {
  border-color: rgba(6, 182, 212, 0.25);
}

.channel-card.kooche:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 45px -12px var(--accent-cyan-glow);
}

.channel-card.rola {
  border-color: rgba(255, 0, 51, 0.25);
}

.channel-card.rola:hover {
  border-color: var(--accent-youtube);
  box-shadow: 0 20px 45px -12px var(--accent-youtube-glow);
}

.channel-card-banner {
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.channel-card.kooche .channel-card-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #083344 100%);
}

.channel-card.rola .channel-card-banner {
  background: linear-gradient(135deg, #2b0c15 0%, #3f0f1d 50%, #18090f 100%);
}

.channel-banner-graphic {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-size: 20px 20px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 1px,
    transparent 1px
  );
}

.channel-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.channel-badge-top.red {
  background: rgba(255, 0, 51, 0.85);
  border-color: transparent;
}

.channel-avatar-wrap {
  width: 66px;
  height: 66px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  position: absolute;
  bottom: 1rem;
  right: 1.75rem;
  background: var(--bg-surface);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.channel-avatar-symbol {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 900;
  color: white;
  user-select: none;
  object-fit: contain;
}

.channel-card.kooche .channel-avatar-symbol {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.channel-card.rola .channel-avatar-symbol {
  background: linear-gradient(135deg, #ff0033, #e11d48);
}

.channel-card-body {
  padding: 1.6rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.channel-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.channel-name {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
}

.channel-handle {
  font-family: var(--font-latin);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.channel-category {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 1.15rem;
}

.channel-card.rola .channel-category {
  color: #ff4d6d;
}

.channel-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.channel-topics-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.channel-topic-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.channel-card.kooche .channel-topic-tag {
  border: 1px solid rgba(6, 182, 212, 0.18);
  font-family: var(--font-latin);
}

.channel-card.rola .channel-topic-tag {
  border: 1px solid rgba(255, 0, 51, 0.18);
}

.channel-footer-action {
  margin-top: auto;
}

.channel-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  transition: all var(--transition-fast);
}

.channel-card.kooche .channel-btn {
  background: linear-gradient(135deg, #0284c7, #2563eb);
}

.channel-card.kooche .channel-btn:hover {
  background: linear-gradient(135deg, #0369a1, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

.channel-card.rola .channel-btn {
  background: linear-gradient(135deg, #ff0033, #be123c);
}

.channel-card.rola .channel-btn:hover {
  background: linear-gradient(135deg, #e6002e, #9f1239);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 51, 0.35);
}

/* JOURNEY SECTION */
.journey-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-purple),
    var(--accent-cyan),
    transparent
  );
}

.timeline-item {
  position: relative;
  padding-right: 76px;
  padding-bottom: 3.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 15px var(--accent-purple-glow);
}

.timeline-marker-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.timeline-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  transition: all var(--transition-fast);
}

.timeline-card:hover {
  background: var(--bg-card);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.timeline-phase {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.65rem;
}

.timeline-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* PROJECTS SECTION (PLACEHOLDERS AS REQUESTED) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-placeholder-card {
  background: var(--bg-surface);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 320px;
  transition: all var(--transition-fast);
}

.project-placeholder-card:hover {
  background: var(--bg-card);
  border-color: var(--accent-purple);
  transform: translateY(-3px);
}

.placeholder-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.placeholder-tag {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-purple-light);
  background: rgba(139, 92, 246, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}

.placeholder-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.65rem;
}

.placeholder-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
}

/* CONTACT & DIRECT LINKS (NO FORMS, NO INPUTS!) */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-direct-card {
  background: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    var(--bg-surface) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-direct-card::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    var(--accent-purple-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-headline {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.direct-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.direct-link-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-fast);
}

.direct-link-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.direct-link-card.yt:hover {
  border-color: var(--accent-youtube);
}

.direct-link-card.ig:hover {
  border-color: var(--accent-instagram);
}

.direct-link-card.mail:hover {
  border-color: var(--accent-cyan);
}

.direct-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.15rem;
}

.direct-icon.yt {
  background: linear-gradient(135deg, #ff0033, #dc2626);
}
.direct-icon.ig {
  background: linear-gradient(135deg, #e1306c, #833ab4);
}
.direct-icon.mail {
  background: linear-gradient(135deg, #0284c7, #06b6d4);
}

.direct-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.direct-address {
  font-family: var(--font-latin);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.direct-action-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.direct-link-card:hover .direct-action-text {
  color: var(--text-white);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-circle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.back-to-top:hover {
  color: var(--text-white);
}

/* Accessibility & Reduced Motion */
:focus-visible {
  outline: 2px solid var(--accent-purple);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .floating-badge {
    animation: none;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   Deliberate mobile layouts, RTL consistency, touch targets & typography
   ========================================================================== */

/* Laptop & Medium Tablet (< 1024px) */
@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .hero-badge-wrap {
    margin-bottom: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
  }

  .hero-content {
    align-items: flex-start;
    text-align: right;
  }

  .hero-name {
    font-size: clamp(2.4rem, 4.5vw, 2.9rem);
    text-align: right;
  }

  .hero-roles {
    justify-content: flex-start;
    font-size: 1.15rem;
  }

  .hero-philosophy {
    text-align: right;
    font-size: 1.18rem;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-description {
    text-align: right;
    font-size: 1.05rem;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .hero-visual {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-visual-frame {
    max-width: 320px;
  }

  .hero-portrait-card {
    border-radius: 24px;
  }

  .hero-portrait-img {
    height: 380px;
    aspect-ratio: 4 / 5;
    object-position: center 16%;
  }

  .floating-badge {
    display: none !important;
  }

  .about-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .channels-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    gap: 2rem;
  }
}

/* Tablets & Large Phones (< 900px) */
@media (max-width: 1061px) {
  .site-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* Standard Mobile & Small Tablets (< 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .section {
    padding: 4rem 0;
    scroll-margin-top: calc(var(--header-height) + 0.5rem);
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 5.5vw, 2.1rem);
    line-height: 1.35;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .section-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  /* Header adjustments */
  .brand-symbol {
    width: 70px;
    height: 70px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .nav-cta {
    display: none; /* YouTube CTA is prominently inside mobile menu */
  }

  /* Hero Section â€” Mobile Optimized */
  .hero-section {
    padding: 2.25rem 0 3.5rem;
    min-height: auto;
  }

  .hero-badge-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.85rem;
  }

  .hero-badge {
    align-self: center;
    font-size: 0.82rem;
    padding: 0.38rem 0.85rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }

  /* Hero Portrait on Mobile: Placed at TOP of Hero, right alongside intro */
  .hero-visual {
    order: 1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.35rem;
    display: flex;
    justify-content: center;
  }

  .hero-visual-frame {
    max-width: 240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .hero-glow-back {
    inset: -8px;
    filter: blur(18px);
    opacity: 0.65;
  }

  .hero-portrait-card {
    border-radius: 20px;
    box-shadow:
      0 12px 28px -6px rgba(0, 0, 0, 0.65),
      0 0 20px rgba(139, 92, 246, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-portrait-img {
    width: 100%;
    height: 250px;
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    object-position: center 15%;
  }

  .hero-portrait-overlay {
    padding: 0.65rem 0.75rem;
  }

  .portrait-status {
    padding: 0.32rem 0.7rem;
    font-size: 0.74rem;
  }

  /* Floating badges are hidden on mobile to prevent overflow and visual clutter */
  .floating-badge {
    display: none !important;
  }

  /* Hero Content on Mobile: Sits directly under photo forming a unified group */
  .hero-content {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-name {
    font-size: clamp(2.2rem, 7.5vw, 2.75rem);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.45rem;
  }

  .hero-roles {
    font-size: 1.05rem;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
  }

  .hero-roles span.separator {
    font-size: 0.75rem;
  }

  .hero-philosophy {
    font-size: 1.08rem;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border-right: none;
    border-bottom: 2px solid var(--accent-cyan);
    border-radius: var(--radius-md);
    margin-bottom: 1.15rem;
    text-align: center;
    width: 100%;
    max-width: 540px;
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 1.6rem;
    text-align: justify;
    text-align-last: center;
    width: 100%;
    max-width: 560px;
  }

  .hero-actions {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    font-size: 0.98rem;
  }

  /* About Section */
  .about-card-main {
    padding: 1.65rem 1.35rem;
    border-radius: var(--radius-lg);
  }

  .about-text-lead {
    font-size: 1.08rem;
    line-height: 1.85;
    text-align: right;
    margin-bottom: 1rem;
  }

  .about-text-body {
    font-size: 0.98rem;
    line-height: 1.85;
    text-align: right;
    margin-bottom: 1.5rem;
  }

  .about-core-formula {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .formula-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

  .about-facts-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .fact-card {
    padding: 1.15rem 1.1rem;
    border-radius: var(--radius-md);
  }

  .fact-label {
    font-size: 0.78rem;
  }

  .fact-value {
    font-size: 0.95rem;
  }

  /* What I Do Section */
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .activity-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .activity-title {
    font-size: 1.22rem;
    margin-bottom: 0.65rem;
  }

  .activity-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: right;
  }

  .activity-tags {
    gap: 0.4rem;
  }

  .activity-tag {
    font-size: 0.78rem;
    padding: 0.3rem 0.65rem;
  }

  /* Skills Section */
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .skill-category-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .skill-cat-title {
    font-size: 1.18rem;
  }

  .skills-pill-wrap {
    gap: 0.45rem;
  }

  .skill-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
    min-height: 38px;
  }

  /* Spotlight Cards */
  .spotlight-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-xl);
  }

  .spotlight-lead {
    font-size: 1.35rem;
    line-height: 1.45;
  }

  .spotlight-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: right;
  }

  .spotlight-features {
    gap: 0.75rem;
  }

  .spotlight-feature-item {
    font-size: 0.92rem;
  }

  .code-snippet {
    padding: 1.25rem 1rem;
    font-size: 0.82rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .creative-tools-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .creative-tool-item {
    grid-column: auto !important;
    padding: 1.15rem 1rem;
  }

  /* YouTube Channels */
  .channels-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .channel-card {
    border-radius: var(--radius-xl);
  }

  .channel-card-banner {
    height: 105px;
  }

  .channel-avatar-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    position: absolute;
    bottom: 0.8rem;
    right: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.18);
  }

  .channel-avatar-symbol {
    font-size: 1.35rem;
  }

  .channel-badge-top {
    top: 0.8rem;
    left: 1rem;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .channel-card-body {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .channel-name {
    font-size: 1.35rem;
  }

  .channel-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: right;
  }

  .channel-topics-pills {
    gap: 0.4rem;
  }

  .channel-topic-tag {
    font-size: 0.78rem;
    padding: 0.3rem 0.65rem;
  }

  .channel-btn {
    width: 100%;
    min-height: 50px;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    justify-content: center;
  }

  /* Journey Timeline */
  .journey-timeline::before {
    right: 14px;
  }

  .timeline-item {
    padding-right: 44px;
    padding-bottom: 2rem;
  }

  .timeline-marker {
    right: 0;
    width: 28px;
    height: 28px;
  }

  .timeline-marker-inner {
    width: 10px;
    height: 10px;
  }

  .timeline-card {
    padding: 1.4rem 1.15rem;
    border-radius: var(--radius-lg);
  }

  .timeline-title {
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .timeline-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: right;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-name {
    font-size: 1.15rem;
  }

  .footer-tagline {
    font-size: 0.88rem;
    text-align: center;
  }

  .social-circle-btn {
    width: 46px;
    height: 46px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .back-to-top {
    min-height: 44px;
    padding: 0.5rem 1rem;
  }
}

/* Small Smartphone Viewports (< 480px) */
@media (max-width: 480px) {
  .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero-section {
    padding: 1.85rem 0 3rem;
  }

  .hero-name {
    font-size: 2.15rem;
  }

  .hero-roles {
    font-size: 0.98rem;
  }

  .hero-visual-frame {
    max-width: 215px;
  }

  .hero-portrait-img {
    height: 225px;
    aspect-ratio: 1 / 1;
    object-position: center 15%;
  }

  .channel-card-banner {
    height: 95px;
  }

  .channel-avatar-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    bottom: 0.65rem;
    right: 1rem;
  }

  .channel-avatar-symbol {
    font-size: 1.25rem;
  }

  .channel-badge-top {
    top: 0.65rem;
    left: 0.75rem;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }

  .spotlight-card,
  .about-card-main,
  .channel-card-body,
  .activity-card,
  .skill-category-card {
    padding: 1.35rem 1rem;
  }

  .spotlight-lead {
    font-size: 1.22rem;
  }

  .channel-name {
    font-size: 1.25rem;
  }

  .timeline-item {
    padding-right: 38px;
  }

  .timeline-card {
    padding: 1.2rem 0.95rem;
  }
}

/* Very Small Smartphones (< 360px) */
@media (max-width: 360px) {
  .hero-name {
    font-size: 1.85rem;
  }

  .hero-visual-frame {
    max-width: 185px;
  }

  .hero-portrait-img {
    height: 190px;
    aspect-ratio: 1 / 1;
    object-position: center 14%;
  }

  .hero-roles {
    font-size: 0.9rem;
    gap: 0.3rem;
  }

  .timeline-item {
    padding-right: 34px;
  }

  .journey-timeline::before {
    right: 11px;
  }

  .timeline-marker {
    right: -3px;
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   Local spacing overrides
   ========================================================================== */

.skills-pill-wrap-spacing {
  margin-bottom: 1.5rem;
}

.youtube-cta-spacing {
  margin-top: 2rem;
}

.creative-tool-item-wide {
  grid-column: span 2;
}
