/* BloqLoft App Launch Page Styles */

/* Import the custom font */
@font-face {
  font-family: 'ArchivoBlackRegular';
  src: url('../font/archivoblack-regular-webfont.woff2') format('woff2'),
       url('../font/archivoblack-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Root Variables */
:root {
  --primary-color: #89bfef;
  --secondary-color: #efefef;
  --accent-color: #007AFF;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;
  --white: #ffffff;
  --gradient-bg: linear-gradient(135deg, #89bfef 0%, #efefef 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2vw;
  align-items: start;
  width: 100%;
}

.hero-logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.hero-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  max-width: 100%;
}

.hero-text-section {
  text-align: left;
  min-width: 0;
}

.hero-title {
  font-family: 'ArchivoBlackRegular', 'Archivo Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  line-height: 1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.launching-soon {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-gray);
  margin: 0;
}

/* Full-width hero image */
.hero-image-section {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background:rgb(62, 90, 117);
  border-block-start: 3px solid #e9ecef;
  border-block-end: 3px solid #e9ecef;
}

.hero-image {
  width: 60%;
  display: block;
  filter: drop-shadow(0 0 10px rgba(51,51,51,0.5));
}

.signup-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.signup-intro {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(137, 191, 239, 0.2);
  border-radius: 12px;
}

.form-error {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 0.95rem;
  color: #c00;
  background: rgba(200, 0, 0, 0.08);
  border-radius: 12px;
}

.btn-signup[disabled],
.btn-signup[aria-busy="true"] {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--white);
}

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

.app-store-badge {
  height: 40px;
  width: auto;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

/* Features Section */
.features {
  background: var(--white);
}

.features-list {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .features-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 2rem;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary-color);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.3s ease;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item:hover .feature-icon {
  background: var(--accent-color);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Screenshots Section */
.screenshots {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.screenshot-placeholder {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  box-shadow: var(--shadow);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}

.screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-weight: 600;
}

/* Screenshots carousel */
.carousel {
  position: relative;
  margin-top: 2rem;
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
}

.carousel-slide-inner .ipad,
.carousel-slide-inner .mac {
  width: 100%;
  max-width: min(720px, 100%);
}

.carousel-slide-inner .mac {
  max-width: min(980px, 100%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, box-shadow 0.2s;
}

.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.carousel-btn:focus {
  outline: 2px solid rgba(0, 0, 0, 0.3);
  outline-offset: 2px;
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}

.carousel-dot.active {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.2);
}

.carousel-dot:focus {
  outline: 2px solid rgba(0, 0, 0, 0.4);
  outline-offset: 2px;
}

@media (max-width: 820px) {
  .carousel {
    max-width: 100%;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* Carousel slide content: iPad/Mac mockups and shot placeholders */
.shot {
  flex: 1;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  position: relative;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(255, 255, 255, 0.2), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.shot-label {
  position: relative;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.shot-sub {
  position: relative;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.35;
}

.ipad {
  width: min(720px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 14px;
}

.ipad::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.ipad-screen {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
}

.ipad-home-indicator {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.mac {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.mac-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.mac-screen {
  height: calc(100% - 34px);
  display: flex;
}

.shot-1 {
  background: linear-gradient(135deg, rgba(120, 180, 255, 0.35), rgba(160, 90, 255, 0.2));
}

.shot-2 {
  background: linear-gradient(135deg, rgba(255, 160, 120, 0.35), rgba(255, 220, 120, 0.18));
}

.shot-3 {
  background: linear-gradient(135deg, rgba(120, 255, 210, 0.3), rgba(120, 160, 255, 0.16));
}

.shot-4 {
  background: linear-gradient(135deg, rgba(255, 120, 160, 0.3), rgba(140, 255, 240, 0.14));
}

.shot-5 {
  background: linear-gradient(135deg, rgba(180, 180, 255, 0.28), rgba(255, 180, 220, 0.14));
}

/* Early Access Section */
.early-access {
  background: linear-gradient(315deg, #89bfef 0%, #efefef 100%);
}

.four-by-four-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15% 5%;
  width: 80%;
  max-width: 1000px;
  margin-inline: 10%;
  align-items: center;
  justify-content: center;
}

.four-by-four-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
  filter:drop-shadow(0 0 10px rgba(51,51,51,0.5));
}

.four-by-four-grid img {
  width: 100%;
}

.early-access-content {
  display: grid;
  align-items: center;
  gap: min(2vw, 3rem);
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

.early-access-image-wrap {
  display: flex;
  height: 100%;
}

.early-access-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.qr-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


.signup-section {
  flex: 1;
  min-width: 0;
}

.signup-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.signup-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.signup-form > p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.early-access-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input[type="email"] {
  padding: 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(137, 191, 239, 0.1);
}

.checkbox-group {
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
}

.checkbox {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.4;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox:checked + .checkbox-label .checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox:checked + .checkbox-label .checkbox-custom::after {
  content: '✓';
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
}

.btn-signup {
  background: rgb(62, 90, 117);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-signup:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.privacy-note {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Download Section */
.download {
  background: var(--white);
  text-align: center;
  display: none; /* Hidden for now */
}

.download-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  margin-bottom: 2rem;
}

.btn-download {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-download:hover {
  transform: scale(1.05);
}

.app-store-badge-large {
  height: 60px;
  width: auto;
}

.app-info {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Legal Section */
.legal {
  padding: 80px 0;
}

.legal-description {
  max-width: 720px;
  margin: 0 auto 28px auto;
  text-align: center;
  opacity: 0.9;
  line-height: 1.6;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Policy / legal subpages (e.g. privacy) */
.policy-page {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
}

.policy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.policy-logo {
  display: flex;
  align-items: center;
}

.policy-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.policy-logo-text {
  font-family: 'ArchivoBlackRegular', 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-left: 0.5rem;
}

.policy-back {
  font-size: 0.95rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.policy-back:hover {
  color: var(--primary-color);
}

.policy-main {
  flex: 1;
  padding: 3rem 0 4rem;
}

.policy-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.policy-title {
  font-family: 'ArchivoBlackRegular', 'Archivo Black', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.policy-lead {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.policy-toc {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(137, 191, 239, 0.12) 0%, rgba(239, 239, 239, 0.5) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.policy-toc ol {
  margin: 0;
  padding-left: 1.5rem;
}

.policy-toc li {
  margin-bottom: 0.35rem;
}

.policy-toc a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.policy-toc a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.policy-content section {
  padding: 0;
  margin-bottom: 2rem;
}

.policy-content section:last-of-type {
  margin-bottom: 0;
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.policy-content p {
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 1rem 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .policy-content {
    padding: 1.75rem 1.25rem;
  }

  .policy-title {
    font-size: 1.85rem;
  }

  .policy-toc {
    padding: 1rem 1.25rem;
  }
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-overlay[hidden] {
  display: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.four-by-four-grid img {
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-text-section {
    text-align: center;
  }

  .hero-logo-section {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .early-access-content {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .signup-form {
    padding: 2rem;
  }

  .signup-heading {
    font-size: 1.75rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }

  .hero-logo-img {
    height: 96px;
  }

  .cta-buttons {
    gap: 0.5rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
} 