/* ==========================================================================
   FORMINY - Apple Minimalist Single Centered Hero
   ========================================================================== */

:root {
  --bg-dark: #000000;
  --text-primary: #F5F5F7;
  --text-secondary: #86868B;
  --text-tertiary: #6E6E73;
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

/* Subtle Ambient Background */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 45%, #111420 0%, #000000 70%);
  pointer-events: none;
  z-index: 0;
}

/* Single Centered Viewport */
.hero-wrapper {
  position: relative;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

/* Brand Logo + Name Group */
.brand-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.brand-svg {
  width: 38px;
  height: 39px;
  color: var(--text-primary);
  opacity: 0.95;
}

.brand-title {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* Main Headline */
.hero-headline {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

/* Description Text */
.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.45;
  letter-spacing: -0.015em;
  max-width: 580px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .brand-svg {
    width: 30px;
    height: 31px;
  }
  .brand-title {
    font-size: 1.75rem;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}
