@font-face {
  font-family: 'VG5000';
  src: url('/fonts/62c13e3f6b73684a31c0dffb_VG5000-Regular_web.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/62c13e3f6b736838c1c0dffc_DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/62c13e3f6b7368ed6ac0e05f_DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  background: #E4E4D9;
  min-height: 100vh;
  color: #000;
}

.hero-bg {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, #B6F0C1 0%, #E4E4D9 60%, #F0562E 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px 0 48px;
  font-family: 'DM Sans', Arial, sans-serif;
  background: transparent;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-right: 32px;
  color: #000;
  display: flex;
  align-items: center;
}
.by-soona {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.8rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 2px 8px;
  margin-left: 8px;
  border: 1px solid #000;
}
.nav-link {
  color: #000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #021A7C;
}
.cta-nav {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  margin-left: 16px;
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 #000;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-nav:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 32px;
  gap: clamp(24px, 5vw, 80px);
  min-height: 480px;
  width: 100%;
  max-width: 1400px;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 320px;
}
.hero-media-left {
  margin-top: 32px;
}
.hero-media-right {
  margin-top: 0;
}
.main-img {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0 4px 24px #cccccc44;
  transition: transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.25s;
  cursor: pointer;
}
.main-img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px #0002, 0 0 0 4px #EBD0FF;
  z-index: 2;
}
.small-img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #000;
  background: #fff;
  position: absolute;
  box-shadow: 0 2px 12px #cccccc44;
  transition: transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.25s;
  cursor: pointer;
}
.small-img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px #0002, 0 0 0 4px #EBD0FF;
  z-index: 2;
}
.hero-media-left .small-img.left {
  left: -60px;
  bottom: -60px;
}
.hero-media-right .small-img.right {
  right: -60px;
  top: 30px;
}
.hero-content {
  max-width: 480px;
  text-align: center;
  margin: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-content h1 {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  margin: 0 0 18px 0;
  letter-spacing: 1px;
  color: #000;
}
.subtitle {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta-main {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
}
.cta-main:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
.cta-secondary {
  color: #000;
  font-size: 1.1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 0;
}

/* Waitlist Form Styles */
.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; /* Adjust as needed */
  max-width: 360px; /* Match button width roughly */
  margin-bottom: 12px; /* Spacing below form */
}

.waitlist-input {
  padding: 14px 20px;
  font-size: 1.1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  border-radius: 8px;
  border: 2px solid #000; /* Match button border style */
  background: #fff;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12px; /* Space between input and button */
  text-align: center;
}

.waitlist-input::placeholder {
  color: #888;
}

.waitlist-button {
  width: 100%; /* Make button full width of form */
  padding: 16px 20px; /* Match cta-main padding */
  cursor: pointer; /* Ensure cursor changes */
}

.waitlist-button:disabled {
  background: #aaa;
  border-color: #888;
  box-shadow: none;
  cursor: not-allowed;
}

.waitlist-message {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  margin-top: 0; /* Already spaced by form margin */
  margin-bottom: 16px; /* Space before 'See Examples' link */
  font-weight: 500;
  text-align: center;
}

.testimonial-bar {
  width: 100vw;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 32px 0 24px 0;
  margin-top: 48px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.1rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  text-align: center;
  gap: 8px;
}
.stars {
  color: #EBD0FF;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-media, .hero-content {
    margin: 0;
  }
  .testimonial-bar {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .nav-left {
    flex: 1;
  }
  .navbar .hamburger {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    z-index: 1001;
    position: absolute;
    right: 12px;
    top: 18px;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.97);
    z-index: 2000;
    padding: 32px 24px 24px 24px;
    box-sizing: border-box;
    gap: 18px;
    animation: fadeIn 0.2s;
  }
  .mobile-menu.open {
    display: flex !important;
  }
  .mobile-nav-link, .mobile-cta-nav {
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-family: 'DM Sans', Arial, sans-serif;
    font-weight: 500;
    background: none;
    text-align: left;
  }
  .mobile-cta-nav {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 14px 0;
    margin-top: 8px;
    text-align: center;
    border: none;
    font-weight: 600;
  }
  .mobile-menu .mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    z-index: 2100;
  }
  .hero-section {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 12px;
  }
  .hero-media {
    min-width: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 0;
  }
  .main-img {
    width: 80vw;
    max-width: 260px;
    height: auto;
    margin-bottom: 0;
  }
  .small-img {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-30%);
    bottom: 0;
    z-index: 2;
    box-shadow: 0 4px 16px #0002, 0 0 0 3px #fff;
    border: 2px solid #000;
  }
  .hero-media-left .small-img.left,
  .hero-media-right .small-img.right {
    left: unset;
    right: 24px;
    bottom: 24px;
    top: unset;
    transform: none;
  }
  .hero-content {
    margin: 0 8px 24px 8px;
    max-width: 95vw;
  }
  .nav-left .nav-link,
  .nav-right .nav-link,
  .cta-nav {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-bg, .showcase-section, .results-section, .faq-section, .footer-section {
    padding-left: 0;
    padding-right: 0;
  }
  .showcase-section {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .showcase-masonry {
    padding-left: 6px;
    padding-right: 6px;
  }
  .testimonial-bar {
    padding: 16px 0 12px 0;
    font-size: 1rem;
    gap: 16px;
  }
  .testimonial {
    max-width: 95vw;
    font-size: 0.98rem;
  }
  .faq-list {
    gap: 10px;
  }
  .modal-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 24px;
  box-shadow: 0 8px 48px #0008;
  border: 3px solid #fff;
  background: #fff;
  object-fit: contain;
  animation: popIn 0.2s;
}
@keyframes popIn {
  from { transform: scale(0.95); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: fixed;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  filter: drop-shadow(0 2px 8px #000a);
  transition: color 0.2s;
}
.modal-close:hover {
  color: #EBD0FF;
}

body.modal-open {
  overflow: hidden;
}

.showcase-section {
  background: #fff;
  padding: 64px 0 48px 0;
  width: 100vw;
}
.showcase-header {
  text-align: center;
  margin-bottom: 40px;
}
.showcase-header h2 {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 12px 0;
}
.showcase-header p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.15rem;
  color: #333;
  margin: 0 0 24px 0;
}
.showcase-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}
.showcase-ctas .cta-main {
  background: #F0562E;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.showcase-ctas .cta-main:hover {
  background: #000;
  color: #fff;
}
.showcase-ctas .cta-secondary.showcase-alt {
  background: #fff;
  color: #F0562E;
  border: 2px solid #F0562E;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.showcase-ctas .cta-secondary.showcase-alt:hover {
  background: #F0562E;
  color: #fff;
}

.showcase-masonry {
  column-count: 3;
  column-gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.showcase-item {
  break-inside: avoid;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.showcase-img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0 4px 24px #cccccc44;
  margin-bottom: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.25s;
  cursor: pointer;
}
.showcase-img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px #0002, 0 0 0 4px #EBD0FF;
  z-index: 2;
}
.showcase-ref-img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid #000;
  background: #fff;
  position: absolute;
  left: -24px;
  bottom: -24px;
  box-shadow: 0 2px 12px #cccccc44;
  transition: transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.25s;
  cursor: pointer;
  z-index: 3;
}
.showcase-ref-img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px #0002, 0 0 0 4px #EBD0FF;
}

@media (max-width: 1100px) {
  .showcase-masonry {
    column-count: 2;
    column-gap: 20px;
  }
}
@media (max-width: 700px) {
  .showcase-masonry {
    column-count: 1;
    column-gap: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .showcase-header h2 {
    font-size: 1.4rem;
  }
  .showcase-ref-img {
    width: 48px;
    height: 48px;
    left: -10px;
    bottom: -10px;
  }
  .showcase-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .showcase-item {
    margin-bottom: 20px;
  }
}

.results-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0 64px 0;
  background: #f4f4f4;
}
.results-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px #cccccc22;
  padding: 48px 32px 40px 32px;
  max-width: 1200px;
  width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results-title {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-bottom: 36px;
}
.results-metrics {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
}
.results-metric {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  min-width: 0;
  position: relative;
}
.results-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #E4E4D9;
}
.results-label {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #021A7C;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.results-value {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.1;
}
.results-desc {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .results-metrics {
    flex-direction: column;
    gap: 32px;
  }
  .results-metric:not(:last-child)::after {
    display: none;
  }
  .results-metric {
    padding: 16px 0;
    border-bottom: 1px solid #E4E4D9;
  }
  .results-metric:last-child {
    border-bottom: none;
  }
}
@media (max-width: 600px) {
  .results-card {
    padding: 32px 8px 24px 8px;
  }
  .results-title {
    font-size: 1.3rem;
  }
  .results-value {
    font-size: 2rem;
  }
  .results-desc {
    font-size: 1rem;
  }
}

.faq-section {
  background: #FFFFF2;
  padding: 64px 0 80px 0;
  width: 100vw;
}
.faq-title {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 8px;
}
.faq-subtitle {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 16px #cccccc22;
  position: relative;
}
.faq-item:focus {
  box-shadow: 0 0 0 3px #EBD0FF;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.faq-toggle {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 16px;
  color: #fff;
  transition: color 0.2s;
  user-select: none;
}
.faq-item.open .faq-toggle {
  color: #EBD0FF;
}
.faq-answer {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-top: 18px;
  line-height: 1.5;
  display: none;
  animation: fadeInFaq 0.2s;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .faq-title {
    font-size: 1.4rem;
  }
  .faq-item {
    font-size: 1rem;
    padding: 18px 12px;
  }
  .faq-list {
    gap: 14px;
  }
  .faq-section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.footer-section {
  background: #000;
  border-top: 6px solid #EBD0FF;
  color: #fff;
  padding: 0 0 0 0;
  width: 100vw;
  margin-top: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 32px 24px 32px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo .logo {
  font-family: 'VG5000', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}
.footer-logo .by-soona {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 2px 8px;
  margin-left: 8px;
  border: 1px solid #fff;
}
.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #EBD0FF;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  transition: background 0.2s;
}
.footer-social-icon:hover {
  background: #EBD0FF22;
}
.footer-bottom {
  text-align: center;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 18px 0 18px 0;
  border-top: 1px solid #222;
  background: #000;
}
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 12px 18px 12px;
  }
  .footer-nav {
    gap: 18px;
    margin: 12px 0;
  }
  .footer-logo .logo {
    font-size: 1.4rem;
  }
}
@media (max-width: 700px) {
  .footer-section {
    padding-left: 0;
    padding-right: 0;
  }
  body, html, .hero-bg, .showcase-section, .faq-section, .footer-section {
    width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}

/* Consistent container for all sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .showcase-section {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .showcase-masonry {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Remove redundant section paddings now handled by .container */
@media (max-width: 700px) {
  .hero-bg, .showcase-section, .results-section, .faq-section, .footer-section {
    padding-left: 0;
    padding-right: 0;
  }
} 