:root {
  --bg-color: #121110;
  --bg-lighter: #1e1d1c;
  --text-primary: #ffffff;
  --text-secondary: #a3a19e;
  --accent-color: #d1b49b;
  --accent-hover: #bda087;
  --card-bg: rgba(30, 29, 28, 0.7);
  --card-border: rgba(255, 255, 255, 0.05);
  --input-bg: #1a1918;
  --input-border: #333230;
  --font-family: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  position: relative;
  z-index: 10;
  color: #111820;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo sup {
  font-size: 14px;
}

.badge-launching {
  background-color: rgba(226, 217, 207, 0.7);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #111820;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 72px 0 96px;
  min-height: 640px;
  color: #111820;
}

.hero-bg-overlay {
  position: absolute;
  top: -104px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 104px);
  transform: translateX(-50%);
  background-image:
    linear-gradient(90deg, rgba(255, 252, 246, 0.94) 0%, rgba(255, 252, 246, 0.74) 35%, rgba(255, 252, 246, 0.18) 57%, rgba(255, 252, 246, 0.72) 100%),
    url('bg-portal.jpg.png');
  background-position: center 32%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 86%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 86%, rgba(0,0,0,0) 100%);
}

.floating-labels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-label {
  position: absolute;
  background: rgba(255,255,255,0.94);
  color: #15191d;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 16px 34px rgba(22, 18, 14, 0.12);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Position floating labels (rough approx of design) */
.tag-marketing { top: 11%; left: 36%; }
.tag-finance { top: 26%; left: 41%; }
.tag-creative { top: 18%; right: 34%; }
.tag-operations { top: 32%; right: 28%; }
.tag-research { top: 40%; left: 34%; }
.tag-hr { top: 47%; right: 31%; }
.tag-sales { top: 64%; left: 40%; }
.tag-strategy { top: 56%; right: 28%; }

@media (max-width: 992px) {
  .desktop-only { display: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 440px;
  padding-top: 40px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111820;
}

.text-accent {
  color: var(--accent-color);
}

.hero-description {
  font-size: 18px;
  color: #29323b;
  margin-bottom: 40px;
  max-width: 390px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #f5efe7;
  background-color: #333;
  margin-left: -12px;
  background-size: cover;
}
.avatar:first-child { margin-left: 0; }

.social-text {
  font-size: 14px;
  color: #111820;
}
.social-text span {
  color: #39434d;
}

/* Waitlist Card */
.hero-right {
  flex: 0 0 400px;
}

.waitlist-card {
  background: rgba(9, 13, 16, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  color: #fff;
}

.card-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 20px;
}

.waitlist-card h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 32px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-primary);
}

.input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.waitlist-form input {
  width: 100%;
  padding: 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-family);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input:focus {
  border-color: var(--accent-color);
}

.waitlist-form input[type="email"] {
  margin-bottom: 16px;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--accent-color);
  color: #121110;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}
.form-message.success { color: #4caf50; }
.form-message.error { color: #f44336; }

.spam-notice {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* Features */
.features-section {
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.sub-heading {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 24px 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Built For Icons */
.built-for-section {
  padding: 60px 0 100px;
  text-align: center;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Bottom CTA */
.bottom-cta-container {
  padding-bottom: 100px;
}

.bottom-cta {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-left h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 300px;
}

.cta-right p {
  font-size: 20px;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--card-border);
}

.footer-left p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.social-icon {
  color: var(--text-secondary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-left {
    padding-top: 0;
  }
  
  .social-proof {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bottom-cta {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .cta-right {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 48px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-right {
    width: 100%;
    flex: auto;
  }
  
  .waitlist-card {
    padding: 32px 24px;
  }
  
  .icon-row {
    gap: 32px;
  }
  
  .cta-left h2 {
    font-size: 32px;
  }
  
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}
