/* ==========================================================================
   PortfolioX — Core Design System
   Built by Teamseven Private Limited | https://teamseven.ltd
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   2. CSS Design System Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors — Background */
  --color-bg:          #0A0A0F;
  --color-surface:     #111118;
  --color-surface-2:   #1A1A26;
  --color-surface-3:   #22223A;

  /* Colors — Accents */
  --color-cyan:        #06B6D4;
  --color-cyan-light:  #67E8F9;
  --color-cyan-dark:   #0891B2;
  --color-purple:      #A855F7;
  --color-purple-light:#D8B4FE;
  --color-purple-dark: #7C3AED;
  --color-pink:        #EC4899;
  --color-pink-light:  #F9A8D4;

  /* Colors — Text */
  --color-text-primary:  #F1F5F9;
  --color-text-secondary:#CBD5E1;
  --color-text-muted:    #64748B;
  --color-text-disabled: #334155;

  /* Colors — Border */
  --color-border:        rgba(255, 255, 255, 0.06);
  --color-border-hover:  rgba(255, 255, 255, 0.12);
  --color-border-accent: rgba(6, 182, 212, 0.3);

  /* Typography */
  --font-heading: 'Archivo', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing Scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md:     0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg:     0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl:     0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-cyan:   0 0 30px rgba(6, 182, 212, 0.15);
  --shadow-purple: 0 0 30px rgba(168, 85, 247, 0.15);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-slower: 600ms ease;

  /* Z-Index Scale */
  --z-base:    10;
  --z-overlay: 20;
  --z-modal:   30;
  --z-nav:     50;
  --z-toast:   100;
}

/* --------------------------------------------------------------------------
   3. CSS Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

img, video {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* --------------------------------------------------------------------------
   4. Aurora Gradient Mesh Background
   -------------------------------------------------------------------------- */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--color-bg);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

.aurora-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7C3AED, transparent);
  top: -20%;
  left: -10%;
  animation-duration: 14s;
}

.aurora-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #06B6D4, transparent);
  top: 20%;
  right: -10%;
  animation-duration: 18s;
  animation-delay: -4s;
}

.aurora-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #EC4899, transparent);
  bottom: 10%;
  left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
}

.aurora-blob-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #0891B2, transparent);
  bottom: -10%;
  right: 20%;
  animation-duration: 20s;
  animation-delay: -2s;
}

@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 40px) scale(0.95); }
  100% { transform: translate(30px, 20px) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none; }
}

/* --------------------------------------------------------------------------
   5. Noise Texture Overlay
   -------------------------------------------------------------------------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  width: calc(100% - 2rem);
  max-width: 1200px;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.45);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.80);
  border-color: rgba(6, 182, 212, 0.12);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(6, 182, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  position: relative;
  cursor: pointer;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-cyan);
  transition: width var(--transition-base);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--color-text-primary);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--color-cyan-dark), var(--color-purple-dark));
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: white !important;
  cursor: pointer;
  transition: opacity var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

.navbar-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.navbar-cta::after {
  display: none !important;
}

.navbar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.navbar-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Mobile Nav Drawer
   -------------------------------------------------------------------------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-muted);
  transition: color var(--transition-base), transform var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--color-text-primary);
  transform: translateX(8px);
}

/* --------------------------------------------------------------------------
   8. Section Layout
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-24) var(--space-4);
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-sm {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* --------------------------------------------------------------------------
   9. Section Label / Eyebrow
   -------------------------------------------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.875rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: var(--space-5);
}

.section-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   10. Typography Utilities
   -------------------------------------------------------------------------- */
.heading-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.heading-sm {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.text-gradient-pink {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-secondary {
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   11. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-cyan-dark), var(--color-purple-dark));
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-hover);
}

.btn-secondary:hover {
  background: var(--color-surface-2);
  border-color: var(--color-border-accent);
  color: var(--color-cyan);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  padding: 0.75rem 1rem;
}

.btn-ghost:hover {
  color: var(--color-text-primary);
  background: var(--color-surface);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

/* --------------------------------------------------------------------------
   12. Glass Card
   -------------------------------------------------------------------------- */
.glass-card {
  background: rgba(17, 17, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.glass-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-xl), var(--shadow-cyan);
  transform: translateY(-4px);
}

.glass-card-flat {
  background: rgba(17, 17, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   13. Divider
   -------------------------------------------------------------------------- */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border-hover), transparent);
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. Badge / Tag
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple-light);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-pink {
  background: rgba(236, 72, 153, 0.1);
  color: var(--color-pink-light);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-neutral {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   15. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 9rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Container fills remaining height and vertically centres hero-cols */
.hero-section > .container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: var(--space-12);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Full-width stats strip anchored at the bottom of the hero section */
.hero-stats-strip {
  width: 100%;
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--color-border);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-stats-strip .stat-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  width: 100%;
}

.hero-stats-strip .stat-item {
  flex: 1;
  text-align: center;
  padding: var(--space-2) var(--space-6);
}

/* Vertical dividers via adjacent sibling — no inline styles needed */
.hero-stats-strip .stat-item + .stat-item {
  border-left: 1px solid var(--color-border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-cyan);
  margin-bottom: var(--space-6);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge .pulse-dot { animation: none; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-disabled);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-border-hover), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
}

/* --------------------------------------------------------------------------
   15b. Hero Two-Column Visual Panel
   -------------------------------------------------------------------------- */

/* Two-column hero layout.
   width:100% is required because .hero-section is display:flex,
   and flex children need explicit width to fill the container. */
.hero-cols {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
}

/* min-width:0 prevents grid items from overflowing their column */
.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* Right panel wrapper */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  min-width: 0;
}

/* Portrait + floating cards container.
   No padding — floating cards sit INSIDE the portrait boundaries. */
.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 340px;
}

/* Orbital deco ring — sized relative to parent so it's always visible.
   Uses width/height so it stays circular regardless of portrait aspect ratio. */
.hero-deco-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
  animation: ring-rotate 40s linear infinite;
}

.hero-deco-ring::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 10px 4px rgba(6, 182, 212, 0.55);
  transform: translate(-50%, -50%);
}

@keyframes ring-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Ambient glow blob — sits behind portrait, no layout impact */
.hero-portrait-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.20) 0%,
    rgba(6, 182, 212, 0.10) 50%,
    transparent 70%
  );
  filter: blur(52px);
  pointer-events: none;
  z-index: 0;
}

/* Portrait card */
.hero-portrait-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.20),
    0 0 0 3px rgba(168, 85, 247, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.20);
  animation: hero-float 6s ease-in-out infinite;
}

.hero-portrait-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

/* Gradient at bottom of portrait so it blends into page */
.hero-portrait-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.65), transparent);
  pointer-events: none;
}

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

/* Floating info cards — z-index 3 renders them on top of portrait (z-index 1).
   Positioned INSIDE the portrait bounds so they never overflow the column. */
.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.5rem 0.75rem;
  background: rgba(13, 13, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.50);
  white-space: nowrap;
}

.hero-float-top {
  top: 1rem;
  right: 1rem;
  animation: hero-float 6s ease-in-out 1s infinite reverse;
}

.hero-float-btm {
  bottom: 1.75rem;
  left: 1rem;
  animation: hero-float 6s ease-in-out 3s infinite;
}

.hero-float-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(168,85,247,0.12));
  border: 1px solid rgba(6, 182, 212, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-cyan);
}

.hero-float-num {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.hero-float-lbl {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 1px;
}

/* Tool pills */
.hero-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  width: 100%;
  max-width: 340px;
}

.hero-tool-pill {
  padding: 0.3125rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  cursor: default;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.hero-tool-pill:hover {
  background: rgba(6, 182, 212, 0.07);
  border-color: rgba(6, 182, 212, 0.22);
  color: var(--color-cyan-light);
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait-wrap,
  .hero-float-top,
  .hero-float-btm,
  .hero-deco-ring { animation: none; }
  .hero-deco-ring { transform: translate(-50%, -50%); }
}

/* --------------------------------------------------------------------------
   16. Stat Counter
   -------------------------------------------------------------------------- */
.stat-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-text-primary), var(--color-text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* --------------------------------------------------------------------------
   17. Work / Portfolio Grid
   -------------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

.work-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-base);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

.work-card-col-7 { grid-column: span 7; }
.work-card-col-5 { grid-column: span 5; }
.work-card-col-6 { grid-column: span 6; }
.work-card-col-4 { grid-column: span 4; }

.work-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-surface-2);
  position: relative;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.work-card:hover .work-card-image img {
  transform: scale(1.04);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(6, 182, 212, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.work-card:hover .work-card-overlay {
  opacity: 1;
}

.work-card-overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.work-card-body {
  padding: var(--space-5) var(--space-6);
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.work-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  transition: color var(--transition-base);
}

.work-card:hover .work-card-title {
  color: var(--color-cyan-light);
}

.work-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   18. Filter Tabs
   -------------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: all var(--transition-base);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-surface-2);
  border-color: var(--color-border-accent);
  color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   19. Service Cards
   -------------------------------------------------------------------------- */
.service-card {
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-cyan), var(--color-purple));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  margin-bottom: var(--space-5);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
}

/* --------------------------------------------------------------------------
   20. Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
  padding: var(--space-8);
}

.testimonial-quote {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0;
  color: var(--color-cyan);
  opacity: 0.2;
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface-3);
  border: 2px solid var(--color-border-accent);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-author-info .name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.testimonial-author-info .role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   21. Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-card {
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.04);
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 1.25rem;
  right: -2.5rem;
  transform: rotate(45deg);
  padding: 0.25rem 3rem;
  background: linear-gradient(135deg, var(--color-cyan-dark), var(--color-purple-dark));
  font-size: var(--text-xs);
  font-weight: 600;
  color: white;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin: var(--space-6) 0;
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
}

.pricing-price .currency {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-price .period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature svg {
  color: var(--color-cyan);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   22. Timeline
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-cyan), var(--color-purple), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
}

.timeline-dot {
  position: absolute;
  left: calc(-2rem - 4px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cyan);
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.timeline-date {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.timeline-company {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.timeline-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   23. Skill Bars
   -------------------------------------------------------------------------- */
.skill-item {
  margin-bottom: var(--space-5);
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.skill-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.skill-percent {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}

.skill-bar {
  height: 4px;
  background: var(--color-surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(to right, var(--color-cyan), var(--color-purple));
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --------------------------------------------------------------------------
   24. Contact Form
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-disabled);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-border-accent);
  background: var(--color-surface-2);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   25. Toast Notification
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-hover);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 360px;
  animation: toast-in 0.3s ease forwards;
}

.toast.toast-success { border-color: rgba(6, 182, 212, 0.3); }
.toast.toast-error   { border-color: rgba(236, 72, 153, 0.3); }

.toast-icon { flex-shrink: 0; }
.toast-icon.success { color: var(--color-cyan); }
.toast-icon.error   { color: var(--color-pink); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.toast.toast-out {
  animation: toast-out 0.3s ease forwards;
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}

/* --------------------------------------------------------------------------
   26. Page Hero Header
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: 10rem;
  padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
}

.page-hero-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-cyan), var(--color-purple));
  border-radius: var(--radius-full);
  margin: var(--space-6) auto 0;
}

/* --------------------------------------------------------------------------
   27. Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  cursor: pointer;
}

.footer-social-link:hover {
  background: var(--color-surface-2);
  border-color: var(--color-border-accent);
  color: var(--color-cyan);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-disabled);
}

.footer-bottom a {
  color: var(--color-cyan);
  transition: opacity var(--transition-base);
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   28. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   29. Cursor Glow (decorative)
   -------------------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.1s linear, top 0.1s linear;
}

/* --------------------------------------------------------------------------
   29b. Layout Grid Classes — override-safe replacements for inline styles
        Use these classes on wrapper divs instead of inline grid-template-columns
        so that responsive.css breakpoints can actually override them.
   -------------------------------------------------------------------------- */

/* Pricing grid */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* 4-column footer layout */
.layout-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
}

/* Standard 1:1 two-column, vertically centered */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Two-column, aligned to top */
.layout-2col-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Contact page asymmetric layout */
.layout-2col-contact {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}

/* Experience / skills two-column */
.layout-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

/* Two-column bio section (sticky left) */
.layout-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* --------------------------------------------------------------------------
   30. Utility Classes
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* --------------------------------------------------------------------------
   31. Image Placeholder (replaces missing images)
   -------------------------------------------------------------------------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-disabled);
}

/* --------------------------------------------------------------------------
   32. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(168, 85, 247, 0.3));
  border-radius: var(--radius-2xl);
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

/* --------------------------------------------------------------------------
   33. Page Transition
   -------------------------------------------------------------------------- */
.page-transition {
  animation: page-fade-in 0.4s ease forwards;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition { animation: none; }
}

/* --------------------------------------------------------------------------
   34. 404 Page
   -------------------------------------------------------------------------- */
.error-404-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  user-select: none;
}
