/* ==========================================================================
   NIHAL ASHPAK SHAIKH — PORTFOLIO
   style.css — Part 1
   Core styles: variables, reset, base, background, navbar, buttons, hero
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg:            #05060a;
  --bg-2:          #0a0c14;
  --surface:       rgba(255, 255, 255, 0.035);
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text:          #f2f4f8;
  --text-soft:     #a9b0c2;
  --text-mute:     #6d7387;

  --accent-1:      #7c5cff;
  --accent-2:      #00d9ff;
  --accent-3:      #ff5c8a;

  --grad: linear-gradient(100deg, #7c5cff 0%, #00d9ff 52%, #ff5c8a 100%);

  /* Typography */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.55);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: rgba(124, 92, 255, 0.4);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05060a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7c5cff, #00d9ff);
  border-radius: 20px;
  border: 2px solid #05060a;
}

/* --------------------------------------------------------------------------
   03. UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: min(var(--container), 90%);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --------------------------------------------------------------------------
   04. BACKGROUND FX
   -------------------------------------------------------------------------- */
.bg-grid {
  position: fixed;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 30%, transparent 78%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.orb-1 {
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  top: -14%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.85), transparent 68%);
}

.orb-2 {
  width: 40vw;
  height: 40vw;
  max-width: 560px;
  max-height: 560px;
  top: 34%;
  right: -14%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.7), transparent 68%);
}

/* --------------------------------------------------------------------------
   05. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 18px 0;
  transition: padding .4s var(--ease), background .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: color .3s ease;
}

.logo span {
  color: var(--accent-2);
}

.logo:hover span {
  color: var(--accent-1);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-links a {
  position: relative;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 100px;
  transition: color .3s var(--ease), background .3s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: #fff;
  background: linear-gradient(100deg, rgba(124, 92, 255, 0.9), rgba(0, 217, 255, 0.75));
  box-shadow: 0 6px 18px rgba(124, 92, 255, 0.35);
}

/* Mobile menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   06. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
  transition: transform .35s var(--ease),
              box-shadow .35s var(--ease),
              background .35s var(--ease),
              border-color .35s var(--ease);
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform .35s var(--ease);
}

.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, #7c5cff, #5b6bff 45%, #00d9ff);
  background-size: 160% 100%;
  background-position: 0% 50%;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.32);
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 44px rgba(124, 92, 255, 0.5);
  transform: translateY(-3px);
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(124, 92, 255, 0.6);
  background: rgba(124, 92, 255, 0.1);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   07. HERO
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 90svh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.hero-content {
  max-width: 640px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 26px;
}

.badge-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ee6a8;
  box-shadow: 0 0 10px rgba(46, 230, 168, 0.9);
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  font-weight: 500;
  color: var(--accent-2);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-description {
  max-width: 580px;
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.hero-description strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Profile image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, #12142a, #0a0b16);
  box-shadow: var(--shadow-lg);
  will-change: transform;
  transition: transform .5s var(--ease);
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(124, 92, 255, 0.35), transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(0, 217, 255, 0.28), transparent 60%),
    linear-gradient(160deg, #111327, #080a14);
}

.image-fallback span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.4rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-fallback small {
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--text-mute);
}

.image-fallback code {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent-2);
}

.hero-image-card.img-loaded .image-fallback { display: none; }

/* --------------------------------------------------------------------------
   08. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header.text-center {
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  padding-left: 34px;
  position: relative;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-sub {
  margin-top: 18px;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-soft);
  max-width: 620px;
}

/* END OF PART 1 — CONTINUES IN PART 2 */



















/* ==========================================================================
   style.css — Part 2
   Skills, Hobbies, Projects, Solvers, About, Social, Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   09. SKILLS
   -------------------------------------------------------------------------- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  will-change: transform;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.skill-card:hover {
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(124, 92, 255, 0.12);
}

.skill-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.4rem;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.25);
  margin-bottom: 20px;
}

.skill-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   10. HOBBIES
   -------------------------------------------------------------------------- */
.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hobby-card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  will-change: transform;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.hobby-card:hover {
  border-color: rgba(124, 92, 255, 0.38);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45), 0 0 40px rgba(124, 92, 255, 0.1);
}

.hobby-emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
  transition: transform .55s var(--ease);
}

.hobby-card:hover .hobby-emoji {
  transform: translateY(-6px) scale(1.14) rotate(-6deg);
}

.hobby-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}

.hobby-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   11. PROJECTS
   -------------------------------------------------------------------------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  will-change: transform;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.project-card:hover {
  border-color: rgba(124, 92, 255, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 46px rgba(124, 92, 255, 0.12);
}

.project-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(124, 92, 255, 0.16),
    transparent 62%
  );
  transition: opacity .45s ease;
}

.project-card:hover .project-glow { opacity: 1; }

.project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.project-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  color: var(--accent-2);
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.24);
}

.project-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-soft);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: all .4s var(--ease);
}

.project-link svg { width: 16px; height: 16px; }

.project-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #7c5cff, #00d9ff);
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 8px 22px rgba(124, 92, 255, 0.45);
}

.project-card h4 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 22px;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.project-tech span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 6px;
  color: var(--text-mute);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   12. PROBLEM SOLVERS
   -------------------------------------------------------------------------- */
.solver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solver-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  will-change: transform;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.solver-card:hover {
  border-color: rgba(0, 217, 255, 0.38);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 217, 255, 0.1);
}

.solver-visual {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.solver-visual-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: transform .8s var(--ease);
}

.solver-card:hover .solver-visual-bg {
  transform: scale(1.12);
}

.gradient-1 {
  background:
    radial-gradient(circle at 25% 30%, rgba(124, 92, 255, 0.75), transparent 62%),
    radial-gradient(circle at 80% 75%, rgba(0, 217, 255, 0.5), transparent 62%),
    linear-gradient(140deg, #101226, #0a0b16);
}

.gradient-2 {
  background:
    radial-gradient(circle at 70% 25%, rgba(0, 217, 255, 0.7), transparent 62%),
    radial-gradient(circle at 20% 80%, rgba(255, 92, 138, 0.45), transparent 62%),
    linear-gradient(140deg, #101226, #0a0b16);
}

.solver-emoji {
  position: relative;
  z-index: 2;
  font-size: 2.6rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
  transition: transform .6s var(--ease);
}

.solver-card:hover .solver-emoji {
  transform: translateY(-5px) scale(1.12);
}

.solver-label {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.solver-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solver-body h4 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.solver-problem,
.solver-solution {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 2px solid var(--border);
}

.solver-problem { border-left-color: rgba(255, 92, 138, 0.5); }
.solver-solution { border-left-color: rgba(0, 217, 255, 0.5); }

.solver-problem strong,
.solver-solution strong {
  color: var(--text);
  font-weight: 600;
}

.solver-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 26px;
  flex-grow: 1;
}

.solver-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.solver-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 1.8px solid var(--accent-2);
  border-bottom: 1.8px solid var(--accent-2);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.solver-body .btn {
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   13. ABOUT PAGE
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  will-change: transform;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.info-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.info-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.28);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   14. SOCIAL SECTION (About Page)
   -------------------------------------------------------------------------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  transition: all .4s var(--ease);
  overflow: hidden;
}

.social-card:hover {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.social-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 13px;
  color: var(--accent-2);
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.24);
  transition: all .4s var(--ease);
}

.social-card-icon svg { width: 22px; height: 22px; }

.social-card:hover .social-card-icon {
  color: #fff;
  background: linear-gradient(135deg, #7c5cff, #00d9ff);
  border-color: transparent;
  transform: rotate(-6deg) scale(1.06);
}

.social-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.social-card-info small {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 3px;
}

.social-card-info strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 90px) 0 30px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(124, 92, 255, 0.045));
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 44px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 300px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.footer-links h4,
.footer-socials h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color .3s ease, transform .3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.86rem;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  transition: all .35s var(--ease);
  width: fit-content;
}

.social-icons a svg {
  width: 17px;
  height: 17px;
  color: var(--accent-2);
  transition: color .3s ease;
}

.social-icons a:hover {
  color: #fff;
  border-color: rgba(124, 92, 255, 0.5);
  background: rgba(124, 92, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-mute);
}

.heart {
  color: var(--accent-3);
  display: inline-block;
}

/* END OF style.css */