@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #00A6C6;
  /* Cyan from mockup */
  --primary-glow: rgba(0, 166, 198, 0.4);
  --bg-dark: #020810;
  --text-white: #FFFFFF;
  --text-muted: #8E9AAF;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(255, 255, 255, 0.05);
  --btn-dark: #122B48;
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Background System */
.background-system {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  background-image: url("New background .JPG");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  /* Darken to match mockup */
  transform: scale(1.05);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 166, 198, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(2, 8, 16, 0.5) 0%, rgba(2, 8, 16, 0.9) 100%);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

/* Header */
.site-header {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-content h1 br {
  display: block;
  content: "";
  margin-top: 8px;
}

.hero-subtext {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
}

/* Signup Forms (Mockup Style) */
.signup-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 500px;
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
}

.signup-box input,
.signup-box textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  color: var(--text-white);
  font-size: 16px;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.signup-box input:focus,
.signup-box textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.signup-box textarea {
  resize: vertical;
  min-height: 100px;
}

.signup-box button {
  background: var(--btn-dark);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 4px;
}

.signup-box button:hover {
  background: #1a3d66;
  transform: translateY(-1px);
}

.input-note {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.laptop-wrapper {
  position: relative;
  width: 100%;
}

.laptop-wrapper img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

/* Sections Common */
.section-tag {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-head {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Problem/Solution Layout */
.feature-info-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 800px;
}

.icon-box {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}

/* Key Features Grid */
.dual-section-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.features-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.feature-item-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.feature-item-card:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
}

.small-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-item-name {
  font-size: 16px;
  font-weight: 600;
}

.feature-item-content {
  display: flex;
  flex-direction: column;
}

.feature-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* Who It's For */
.target-para {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.target-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  padding: 80px 0 60px;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-badges {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #4A5568;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid,
  .dual-section-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .laptop-wrapper {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 600px) {
  .signup-box {
    background: transparent;
    border: none;
    padding: 0;
  }

  .signup-box input,
  .signup-box textarea,
  .signup-box button {
    width: 100%;
    border: 1px solid var(--glass-border);
    margin-bottom: 12px;
    border-radius: var(--radius);
  }

  .signup-box button {
    padding: 18px 0;
  }

  .features-box-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}