:root {
  --primary: #f5385e;
  --primary-dark: #d62045;
  --bg: #f8f5f6;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --radius: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --font-display: "Manrope", "Noto Sans", sans-serif;
  --font-body: "Noto Sans", sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bgShift {
  0%, 100% { opacity: 0.5; transform: translate(0, 0) scale(1); }
  33% { opacity: 0.7; transform: translate(5%, -3%) scale(1.06); }
  66% { opacity: 0.55; transform: translate(-4%, 4%) scale(0.96); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, -4%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  @keyframes fadeUp {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes scaleIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes bgShift {
    0%, 100% { opacity: 0.4; }
  }
  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(245, 56, 94, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(245, 56, 94, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(214, 32, 69, 0.05) 0%, transparent 40%);
  animation: bgShift 18s ease-in-out infinite;
}

body::after {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(248, 245, 246, 0.8) 0%, transparent 30%);
  animation: float 22s ease-in-out infinite;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.09;
  animation: textureDrift 25s linear infinite;
}

@keyframes textureDrift {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.bg-floaters {
  z-index: 0;
}

.floater {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 56, 94, 0.28) 0%, rgba(245, 56, 94, 0.08) 40%, transparent 50%);
  animation: floatOrb 28s ease-in-out infinite, orbPulse 5s ease-in-out infinite;
}

.floater-1 { width: 180px; height: 180px; left: 12%; top: 25%; animation-duration: 32s; animation-delay: 0s; }
.floater-2 { width: 130px; height: 130px; left: 75%; top: 15%; animation-duration: 26s; animation-delay: -6s; }
.floater-3 { width: 160px; height: 160px; left: 85%; top: 65%; animation-duration: 30s; animation-delay: -12s; }
.floater-4 { width: 100px; height: 100px; left: 8%; top: 70%; animation-duration: 24s; animation-delay: -3s; }
.floater-5 { width: 140px; height: 140px; left: 50%; top: 85%; animation-duration: 34s; animation-delay: -18s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(65px, -70px) scale(1.18); }
  40% { transform: translate(-50px, 55px) scale(0.88); }
  60% { transform: translate(45px, 50px) scale(1.12); }
  80% { transform: translate(-70px, -35px) scale(0.94); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .floater { animation: none; }
  .bg-texture { animation: none; opacity: 0.06; }
}

.page-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 6rem;
}

.layout-content-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 2.5rem 1.5rem 2.5rem;
}

@media (min-width: 768px) {
  .layout-content-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .layout-content-container {
    padding: 6rem 2.5rem 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  animation: scaleIn 0.8s ease-out both;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .hero-image-wrap {
    width: 50%;
    aspect-ratio: 1;
  }
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 17, 18, 0.8), transparent);
  opacity: 0.8;
}

.hero-image-wrap img.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.8;
  pointer-events: none;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-content {
    width: 50%;
    justify-content: center;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0;
  animation: fadeUp 0.7s ease-out 0.15s both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title .logo-text {
  height: 2.5rem;
  width: auto;
  display: inline-block;
}

@media (min-width: 768px) {
  .hero-title .logo-text {
    height: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title .logo-text {
    height: 3.5rem;
  }
}

.hero-badge {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  max-width: 32rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625;
  color: var(--text-muted);
  max-width: 32rem;
  animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero-cherry {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0;
  animation: fadeUp 0.7s ease-out 0.45s both;
}

.hero-stats {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  max-width: 32rem;
  margin: 0;
  animation: fadeUp 0.7s ease-out 0.6s both;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
  animation: fadeIn 0.8s ease-out 0.9s both;
}

footer .copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}
