

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #070e0b;
  --bg-card:     #0c1712;
  --bg-hover:    #111f18;
  --teal:        #00d4aa;
  --teal-soft:   rgba(0, 212, 170, 0.08);
  --teal-glow:   rgba(0, 212, 170, 0.15);
  --teal-ring:   rgba(0, 212, 170, 0.3);
  --white:       #eef4f1;
  --muted:       #5a7a6a;
  --border:      #152219;
  --border-lit:  #1e3328;
  --wa:          #25D366;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}


#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}


.morphing-blob {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 70%);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  pointer-events: none;
  z-index: 0;
  animation: blobMorph 10s ease-in-out infinite alternate,
             blobDrift 18s ease-in-out infinite alternate;
  filter: blur(40px);
}


.trail-dot {
  position: fixed;
  border-radius: 50%;
  background: var(--teal);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}


.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(7, 14, 11, 0.75);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--teal); }

.nav-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: none;
}

@media (min-width: 600px) {
  .nav-tag { display: block; }
  .nav { padding: 1.5rem 2.5rem; }
}


.hero {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

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

.hero-title {
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  min-height: 2.5em;
}


.glow-text {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
  animation: textGlow 3s ease-in-out infinite alternate;
}


.cursor-blink {
  color: var(--teal);
  font-style: normal;
  font-weight: 300;
  animation: blink 0.75s step-end infinite;
  margin-left: 2px;
}

.hero-sub {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}


.stats-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 1.5rem 0.5rem;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.28s;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  display: block;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}


.quick-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0 1.5rem;
  max-width: 560px;
  margin: 2rem auto 0;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.38s;
}

.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  overflow: hidden;
  /* magnetic effect uses JS transform, so we keep transition gentle */
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  will-change: transform;
}

.btn-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%);
  border-radius: 50%;
  top: -50px; left: -30px;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.4s;
  opacity: 0;
}

.wa-glow {
  background: radial-gradient(circle, rgba(37,211,102,0.22), transparent 70%);
}

.action-btn:hover .btn-glow { opacity: 1; transform: scale(1.5); }

.email-btn {
  background: linear-gradient(135deg, rgba(0,212,170,0.05), transparent);
  border-color: rgba(0, 212, 170, 0.15);
}

.email-btn:hover {
  border-color: var(--teal-ring);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.1);
}

.whatsapp-btn {
  background: linear-gradient(135deg, rgba(37,211,102,0.05), transparent);
  border-color: rgba(37, 211, 102, 0.15);
}

.whatsapp-btn:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.1);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.action-btn:hover .btn-icon { transform: scale(1.1); }

.email-btn .btn-icon    { color: var(--teal); }
.whatsapp-btn .btn-icon { color: var(--wa); }

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
}

.btn-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.btn-sub {
  font-size: 0.73rem;
  color: var(--muted);
}

.btn-arrow {
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}

.action-btn:hover .btn-arrow {
  color: var(--white);
  transform: translate(3px, -3px);
}



.divider-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.75rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-text {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}


.info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 0 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}

.info-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(20px);
}

.info-card.visible {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.card-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.05), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

a.info-card:hover .card-shimmer { left: 150%; }

a.info-card:hover {
  background: var(--bg-hover);
  border-color: var(--border-lit);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

a.info-card:hover .card-arrow {
  color: var(--teal);
  transform: translate(3px, -3px);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

a.info-card:hover .card-icon { transform: scale(1.1); }

.insta-icon    { color: #e1306c; background: rgba(225,48,108,0.1); }
.linkedin-icon { color: #4fa3e0; background: rgba(10,102,194,0.12); }
.phone-icon    { color: var(--teal); background: var(--teal-soft); }
.web-icon      { color: var(--teal); background: var(--teal-soft); }

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  flex: 1;
}

.card-title  { font-size: 0.85rem; font-weight: 600; letter-spacing: -0.01em; }
.card-detail { font-size: 0.73rem; color: var(--muted); line-height: 1.55; }

.card-arrow {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  margin-top: 2px;
}


.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.5rem 1.5rem 2rem;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-drop {
  margin-bottom: 0.75rem;
  animation: floatDrop 3s ease-in-out infinite;
}


@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes textGlow {
  0%   { text-shadow: 0 0 20px rgba(0,212,170,0.2); }
  100% { text-shadow: 0 0 45px rgba(0,212,170,0.6), 0 0 90px rgba(0,212,170,0.18); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes blobMorph {
  0%   { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  25%  { border-radius: 50% 50% 35% 65% / 60% 40% 60% 40%; }
  50%  { border-radius: 40% 60% 60% 40% / 55% 45% 55% 45%; }
  75%  { border-radius: 55% 45% 45% 55% / 40% 60% 40% 60%; }
  100% { border-radius: 65% 35% 50% 50% / 50% 50% 65% 35%; }
}

@keyframes blobDrift {
  0%   { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(60px); }
}

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


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero, .quick-actions, .stats-row, .divider-row, .info-card {
    opacity: 1;
    transform: none;
  }
}