* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 2rem;
  height: 2rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #111827;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background: #374151;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: #f9fafb;
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.hero p {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  transition: background-color 0.2s;
  margin-bottom: 4rem;
}

.hero-cta:hover {
  background: #374151;
}

.hero .early-access-banner {
  max-width: 48rem;
  margin: 0 auto 4rem;
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .early-access-banner p:first-child {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.hero .early-access-banner p:last-child {
  color: #d1d5db;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero .early-access-banner .hero-cta {
  margin-bottom: 0;
  background: white;
  color: #111827;
  font-weight: 800;
}

.hero .early-access-banner .hero-cta:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.hero-image {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.hero-image img {
  margin: 0 auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 24rem;
  width: 100%;
  height: auto;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  .hero p {
    font-size: 1.5rem;
  }
}

/* Screenshot Gallery */
.gallery {
  padding: 6rem 0;
  background: white;
}

.gallery-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 5rem;
}

.gallery h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.gallery p {
  font-size: 1.25rem;
  color: #6b7280;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  background: #f9fafb;
  border-radius: 1.5rem;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: white;
}

.how-it-works-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 5rem;
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.how-it-works p {
  font-size: 1.25rem;
  color: #6b7280;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.step {
  text-align: center;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #111827;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.step p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: #f9fafb;
}

.pricing-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.pricing p {
  font-size: 1.25rem;
  color: #6b7280;
}

.early-access-banner {
  max-width: 48rem;
  margin: 0 auto 3rem;
  background: #111827;
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.early-access-banner p:first-child {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.early-access-banner p:last-child {
  color: #d1d5db;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.pricing-card.featured {
  background: #111827;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card.featured h3 {
  color: white;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-card .price-period {
  color: #6b7280;
  font-size: 1.125rem;
}

.pricing-card.featured .price-period {
  color: #9ca3af;
}

.pricing-card .price-note {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-features svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card .pricing-features svg {
  color: #111827;
}

.pricing-card.featured .pricing-features svg {
  color: white;
}

.pricing-card .pricing-features span {
  color: #374151;
}

.pricing-card.featured .pricing-features span {
  color: white;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.pricing-cta:hover {
  background: #374151;
}

.pricing-card.featured .pricing-cta {
  background: white;
  color: #111827;
}

.pricing-card.featured .pricing-cta:hover {
  background: #f3f4f6;
}

.pricing-overlay {
  position: relative;
}

.pricing-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  border-radius: 1.5rem;
  z-index: 1;
}

.pricing-overlay .pricing-grid {
  position: relative;
  z-index: 0;
  filter: grayscale(0.3);
  opacity: 0.7;
}

.pricing-launch-note {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111827;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 24rem;
}

.pricing-launch-note h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.pricing-launch-note p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0;
}

.save-badge {
  background: white;
  color: #111827;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Download CTA */
.download-cta {
  padding: 6rem 0;
  background: white;
}

.download-cta-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.download-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.download-cta p {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.download-cta .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.125rem;
  transition: background-color 0.2s;
  margin-bottom: 2rem;
}

.download-cta .cta-button:hover {
  background: #374151;
}

.download-cta .cta-note {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #f9fafb;
}

.contact-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.25rem;
  color: #6b7280;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  ring: 2px solid #111827;
  border-color: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #111827;
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background: #374151;
}

.contact-info {
  margin-top: 4rem;
  text-align: center;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-info a:hover {
  color: #6b7280;
}

/* Form Container Styles */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.form-overlay {
  width: 100%;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-overlay:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-overlay iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 8px;
  background: transparent;
}

@media (max-width: 768px) {
  .form-container {
    padding: 20px 10px;
  }

  .form-overlay {
    padding: 15px;
  }

  .form-overlay iframe {
    height: 600px;
  }
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
footer {
  background: white;
  padding: 4rem 0;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  /* display: grid; */
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand svg {
  width: 2rem;
  height: 2rem;
}

.footer-brand-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.footer-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-section h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111827;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: #e5e7eb;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s;
}

.social-link:hover {
  background: #d1d5db;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #111827;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

#offer-text {
  color: white;
}

#floating-cta {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  background: rgba(70, 57, 93, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 6px 18px rgba(55, 32, 95, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
#floating-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.5);
  background: rgba(170, 130, 241, 0.9);
}
#floating-cta:active {
  transform: scale(0.95);
}
@media (max-width: 640px) {
  #floating-cta {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    font-size: 22px;
  }
}

:root {
  --nav-bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --btn: #0e0e0e;
  --border: rgba(0, 0, 0, 0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--btn);
  color: #fff;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
}
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  z-index: 120;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 14px 10px;
  text-decoration: none;
  border-radius: 12px;
  color: var(--text);
}
.mobile-menu a:visited {
  color: var(--text);
}
.mobile-menu a:hover {
  background: rgba(125, 124, 124, 0.04);
}
@media (max-width: 768px) {
  .nav-links,
  .nav-content > .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  nav.menu-open .mobile-menu {
    display: block;
  }
  .mobile-menu .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
  }
}