/* ============================================
   ARIA SANTOS — v2 Redesign
   Dark minimal / Miami influencer aesthetic
   ============================================ */

:root {
  --bg:          #0a0a0a;
  --bg-raised:   #111111;
  --bg-card:     #161616;
  --text:        #f0ece6;
  --text-dim:    #8a8580;
  --accent:      #e85d4a;
  --accent-soft: rgba(232, 93, 74, 0.12);
  --border:      rgba(255, 255, 255, 0.06);

  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   SHARED TYPOGRAPHY
   ============================================ */

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.label-center {
  display: block;
  text-align: center;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
}

/* ============================================
   HERO — Full screen, image-dominant
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 35%,
    rgba(10, 10, 10, 0.15) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 4rem;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}

.hero p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}

.hero-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}

.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.hero-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease) forwards;
}

.hero-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: pulse 2s infinite;
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(15%) contrast(1.05);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.stat-key {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   CONTENT GRID — Instagram-style
   ============================================ */

.grid-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.grid-title {
  text-align: center;
  margin-bottom: 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.grid-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s;
}

.grid-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.grid-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.grid-item:hover .grid-hover {
  opacity: 1;
}

/* ============================================
   SHOP
   ============================================ */

.shop {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.shop-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.shop-img {
  position: relative;
  overflow: hidden;
}

.shop-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.shop-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
}

.shop-info {
  padding: 1.5rem;
}

.shop-info h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.shop-info p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.shop-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.shop-pricing {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.shop-price-old {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.5;
}

.shop-card-featured {
  border-color: var(--accent);
}

.shop-buy {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.shop-buy:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.shop-buy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   FREE PRODUCT — Lead Magnet
   ============================================ */

.free-product {
  margin-top: 3rem;
}

.free-product-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 2.5rem;
}

.free-product-text {
  flex: 1;
}

.free-product-text h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.free-product-text p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

.free-product-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--bg-raised);
  flex-shrink: 0;
}

.free-product-form input {
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: transparent;
  border: none;
  color: var(--text);
  outline: none;
  width: 220px;
}

.free-product-form input::placeholder {
  color: var(--text-dim);
}

.free-product-form button {
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.free-product-form button:hover {
  opacity: 0.85;
}

/* ============================================
   EMAIL SIGNUP
   ============================================ */

.signup {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.signup-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.signup h2 {
  margin-bottom: 2rem;
}

.signup-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--bg-raised);
}

.signup-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: transparent;
  border: none;
  color: var(--text);
  outline: none;
}

.signup-form input::placeholder {
  color: var(--text-dim);
}

.signup-form button {
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.signup-form button:hover {
  opacity: 0.85;
}

.form-fine {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 1rem;
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-dim);
  opacity: 0.5;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================
   KEYFRAMES
   ============================================ */

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.5rem 3rem;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo img {
    height: 350px;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .free-product-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .free-product-form {
    width: 100%;
    flex-direction: column;
    border-radius: 12px;
  }

  .free-product-form input {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .hero-socials a {
    width: 40px;
    height: 40px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .signup-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .signup-form button {
    border-radius: 0;
  }
}
