:root {
  --magenta: #8B1A5C;
  --magenta-dark: #5e1040;
  --magenta-light: #b8447e;
  --rose: #d4638a;
  --lavender: #f3e8ef;
  --cream: #faf7f9;
  --white: #ffffff;
  --text: #1a0e15;
  --text-mid: #5a3d50;
  --text-light: #9e7a8d;
  --border: rgba(139,26,92,0.12);
  --shadow: 0 20px 60px rgba(139,26,92,0.12);
  --shadow-lg: 0 40px 100px rgba(139,26,92,0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--lavender); }
::-webkit-scrollbar-thumb { background: var(--magenta); border-radius: 99px; }

.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--magenta); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--magenta); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s, width 0.3s, height 0.3s;
  opacity: 0.5;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(250,247,249,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 30px rgba(139,26,92,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--magenta);
  letter-spacing: 2px;
}
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--magenta);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--magenta); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--magenta); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--magenta);
  color: white !important;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(139,26,92,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--magenta-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,26,92,0.4) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; border: none; background: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--magenta); border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(250,247,249,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5%;
  flex-direction: column; gap: 1.5rem;
  z-index: 999;
  animation: slideDown 0.35s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--magenta); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--lavender) 60%, #e8d0df 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%; filter: blur(80px);
  pointer-events: none;
}
.blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,26,92,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,99,138,0.1) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(139,26,92,0.08) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation: blobFloat 6s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.97); }
}
.hero-content {
  max-width: 700px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,26,92,0.1);
  border: 1px solid rgba(139,26,92,0.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title span {
  color: var(--magenta);
  position: relative; display: inline-block;
}
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--rose));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.8s ease 0.9s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}
.btn-primary {
  background: var(--magenta);
  color: white;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(139,26,92,0.35);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--magenta-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(139,26,92,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--magenta);
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(139,26,92,0.3);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  border-color: var(--magenta);
  background: rgba(139,26,92,0.05);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--magenta); line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem; color: var(--text-light);
  font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; margin-top: 4px;
}
.hero-visual {
  position: absolute; right: 5%; top: 30%;
  transform: translateY(-50%);
  width: min(380px, 40vw);
  animation: fadeUp 0.8s ease 0.2s both;
}
.phone-frame {
  width: 220px; height: 420px;
  background: white;
  border-radius: 36px;
  box-shadow: 0 40px 100px rgba(139,26,92,0.2), 0 0 0 8px rgba(139,26,92,0.08);
  position: relative; overflow: hidden;
  margin: auto;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.phone-notch {
  width: 80px; height: 24px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen {
  padding: 0 16px 16px;
  height: calc(100% - 24px);
  background: linear-gradient(160deg, var(--lavender) 0%, #e8d4e0 100%);
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 16px;
}
.phone-app-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.phone-app {
  aspect-ratio: 1;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: appBounce 0.5s ease both;
}
.phone-app:nth-child(1) { background: linear-gradient(135deg, #2ecc71, #27ae60); animation-delay: 1s; }
.phone-app:nth-child(2) { background: linear-gradient(135deg, #8B1A5C, #b8447e); animation-delay: 1.1s; }
.phone-app:nth-child(3) { background: linear-gradient(135deg, #3498db, #2980b9); animation-delay: 1.2s; }
.phone-app-wide {
  border-radius: 14px;
  padding: 12px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
.app-wide-title { font-size: 0.65rem; font-weight: 700; color: var(--text); }
.app-wide-bar { height: 4px; background: var(--lavender); border-radius: 2px; margin-top: 6px; }
.app-wide-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--magenta), var(--rose)); }
.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(139,26,92,0.2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin 20s linear infinite;
}
.orbit-ring:nth-child(2) { animation-duration: 30s; animation-direction: reverse; }
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--magenta);
  border-radius: 50%;
  top: -5px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 0 3px rgba(139,26,92,0.2);
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes appBounce {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== SECTION SHARED ===== */
section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
section.full { max-width: 100%; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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-delay-4 { transition-delay: 0.4s; }

/* ===== ABOUT ===== */
#about {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-sub { max-width: 480px; margin-bottom: 2.5rem; }
.about-features {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream) 0%, rgba(255,255,255,0.5) 100%);
  border: 1.5px solid var(--border);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative; overflow: hidden;
}
.about-feature::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(139,26,92,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about-feature:hover {
  border-color: var(--magenta);
  box-shadow: 0 12px 40px rgba(139,26,92,0.15);
  transform: translateX(8px) translateY(-4px);
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.6) 100%);
}
.about-feature:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--magenta), var(--rose));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(139,26,92,0.35);
  transition: all 0.4s ease;
  position: relative;
}
.about-feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 28px rgba(139,26,92,0.45);
}
.feature-text strong { display: block; font-weight: 700; color: var(--text); font-size: 0.95rem; margin-bottom: 0.3rem; }
.feature-text span { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.about-right { position: relative; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.stat-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.stat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(139,26,92,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-card:hover {
  box-shadow: 0 16px 50px rgba(139,26,92,0.12);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--magenta);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover::after { opacity: 1; }
.stat-card:nth-child(2) {
  background: linear-gradient(135deg, var(--magenta) 0%, #a6225a 100%);
  color: white;
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 30px rgba(139,26,92,0.25);
}
.stat-card:nth-child(2):hover {
  box-shadow: 0 16px 60px rgba(139,26,92,0.4);
  transform: translateY(-10px) scale(1.03);
}
.stat-card:nth-child(2) .stat-num { color: white; font-weight: 900; }
.stat-card:nth-child(2) .stat-label { color: rgba(255,255,255,0.85); font-weight: 500; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 900;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.3px; }
.about-decoration {
  position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 35px solid var(--lavender);
  border-radius: 50%; opacity: 0.5;
  pointer-events: none;
  animation: floatSlow 6s ease-in-out infinite;
  transform: translateZ(0);
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, -15px) rotate(5deg); }
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== APPS / GOOGLE PLAY STORE ===== */
#apps {
  background: var(--cream);
  text-align: center;
}
#apps .section-title, #apps .section-sub { margin-left: auto; margin-right: auto; }
#apps .section-sub { text-align: center; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: left;
}
.app-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(139,26,92,0.04);
}
.app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(139,26,92,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.app-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,26,92,0.2);
}
.app-top { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.2rem; }
.app-icon-box {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.icon-green { background: linear-gradient(135deg, #0f9b58, #07c48b); }
.icon-amber { background: linear-gradient(135deg, #c97a12, #f0a830); }
.icon-indigo { background: linear-gradient(135deg, #3b29a8, #5e50e8); }
.icon-lime { background: linear-gradient(135deg, #2a8d2a, #55cc55); }
.app-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); line-height: 1.3; margin-bottom: 4px;
}
.app-category { font-size: 0.78rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.app-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.app-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.tag {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--lavender);
  color: var(--magenta);
  letter-spacing: 0.3px;
  border: 1px solid rgba(139,26,92,0.15);
}
.app-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
  align-self: flex-start;
}
.app-download:hover {
  background: var(--magenta);
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(139,26,92,0.35);
}
.app-download svg { width: 18px; }

/* ===== TECH ===== */
#tech {
  background: white;
  text-align: center;
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
#tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(203,17,93,0.08), transparent 28%), radial-gradient(circle at 90% 20%, rgba(89,26,112,0.06), transparent 18%);
  pointer-events: none;
}
#tech::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 680px;
  height: 420px;
  background: radial-gradient(circle, rgba(203,17,93,0.08), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.tech-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.45;
}
.tech-decor-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139,26,92,0.24), transparent 58%);
  top: 12%;
  left: 5%;
  animation: drift 10s ease-in-out infinite alternate;
}
.tech-decor-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212,99,138,0.14), transparent 60%);
  top: 8%;
  right: 8%;
  animation: drift 12s ease-in-out infinite alternate-reverse;
}
.tech-decor-3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(232,209,221,0.9), transparent 72%);
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: drift 8s ease-in-out infinite;
}
#tech .section-label { color: var(--magenta); letter-spacing: 0.25em; text-transform: uppercase; }
#tech .section-title { color: var(--text); margin-left: auto; margin-right: auto; font-size: clamp(2.4rem, 3vw, 3.2rem); line-height: 1.02; }
#tech .section-sub { color: var(--text-mid); margin: 0 auto 3rem; text-align: center; max-width: 720px; }
.tech-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.6rem;
  justify-items: center;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.tech-item {
  position: relative;
  overflow: hidden;
  width: 170px;
  min-height: 190px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,236,245,0.92));
  border: 1px solid rgba(139,26,92,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 24px 60px rgba(139,26,92,0.08);
}
.tech-item:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 36px 90px rgba(139,26,92,0.18);
  border-color: rgba(139,26,92,0.22);
}
.tech-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.25), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}
.tech-item-icon {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(243,227,236,0.96));
  box-shadow: 0 18px 42px rgba(139,26,92,0.12);
  font-size: 1.9rem;
  color: var(--magenta);
  position: relative;
  z-index: 1;
  animation: iconPulse 2.4s ease-in-out infinite alternate;
}
.tech-item:hover .tech-item-icon { transform: scale(1.08); }
.tech-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.tech-item-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 150px;
}
@keyframes iconPulse {
  from { transform: translateY(0) scale(1); box-shadow: 0 18px 42px rgba(139,26,92,0.12); }
  to { transform: translateY(-4px) scale(1.03); box-shadow: 0 24px 54px rgba(139,26,92,0.18); }
}
@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-16px); }
}

/* ===== TEAM ===== */
#team {
  background: white;
  text-align: center;
}
#team .section-title, #team .section-sub { margin-left: auto; margin-right: auto; }
#team .section-sub { text-align: center; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.team-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,92,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.team-card:hover {
  border-color: var(--magenta);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.team-card:hover::before { opacity: 1; }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--rose));
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: white;
  box-shadow: 0 8px 30px rgba(139,26,92,0.3);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.team-avatar-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(139,26,92,0.3);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.team-card:hover .team-avatar { transform: scale(1.1); box-shadow: 0 16px 40px rgba(139,26,92,0.4); }
.team-card:hover .team-avatar-img { transform: scale(1.1); box-shadow: 0 16px 40px rgba(139,26,92,0.4); }
.team-ring {
  position: absolute;
  width: 140px; height: 140px;
  border: 2px dashed rgba(139,26,92,0.2);
  border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spin 12s linear infinite;
}
.team-avatar-wrap {
  position: relative; width: 140px; height: 140px;
  margin: 0 auto 1.5rem;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.78rem; font-weight: 600;
  color: var(--magenta); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 1rem;
}
.team-bio { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; max-width: 280px; margin: 0 auto; }
.team-initials-badge {
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800;
  color: var(--magenta);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 2px solid var(--lavender);
}
.team-links {
  display: flex; justify-content: center; gap: 0.75rem;
  margin-top: 1.4rem;
}
.team-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(139,26,92,0.1);
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
}
.team-link:hover {
  background: white;
  border-color: rgba(139,26,92,0.2);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(139,26,92,0.12);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--lavender);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-info .section-sub { margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--magenta);
  box-shadow: 0 8px 30px rgba(139,26,92,0.1);
  transform: translateX(6px);
}
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--magenta), var(--rose));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(139,26,92,0.25);
}
.contact-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-value { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(139,26,92,0.1);
  background: white;
}
.form-group textarea { height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-send {
  width: 100%;
  background: var(--magenta);
  color: white;
  padding: 14px;
  border: none; cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(139,26,92,0.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-send:hover {
  background: var(--magenta-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(139,26,92,0.4);
}
.form-success {
  display: none;
  text-align: center; padding: 2rem;
  color: var(--magenta);
}
.form-success .checkmark { font-size: 3rem; margin-bottom: 1rem; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--magenta-dark) 0%, #5a1a4d 100%);
  color: white;
  padding: 5rem 5% 2.5rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139,26,92,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}
.footer-brand .logo-text {
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: all 0.4s ease;
}
.footer-brand:hover .logo-text { letter-spacing: 0.5px; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 280px;
  font-weight: 400;
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
  transition: width 0.4s ease;
}
div:has(> .footer-col-title):hover .footer-col-title::after { width: 30px; }
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.footer-col-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-left: 0;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.footer-col-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: white;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-col-links a:hover {
  color: white;
  transform: translateX(4px);
}
.footer-col-links a:hover::before { width: 100%; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  transition: left 0.4s ease;
}
.social-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 12px 30px rgba(139,26,92,0.3);
}
.social-btn:hover::before { left: 100%; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--magenta);
  color: white;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(139,26,92,0.35);
  cursor: pointer; border: none;
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 900;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(139,26,92,0.45); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  #contact { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 5%; }
  .hero-stats { gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .apps-grid { gap: 1.5rem; }
  .app-card { padding: 1.8rem; }
}
