:root {
  --bg: #ffffff;
  --surface: rgba(15, 23, 42, 0.03);
  --surface-strong: rgba(15, 23, 42, 0.06);
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --text: #151515;
  --muted: #6b7280;
  --button-bg: #121212;
  --button-bg-hover: #000000;
  --button-text: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-family);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

.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;
}

.site-header {
  width: min(var(--max-width), 100%);
  padding: 32px 32px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 0;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #000000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search:focus-within {
  border-color: var(--button-bg);
  background: #ffffff;
}

.header-search input {
  padding: 10px 18px;
  width: 220px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.header-search input::placeholder {
  color: var(--muted);
}

.waitlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.waitlist-button:hover,
.waitlist-button:focus-visible {
  transform: translateY(-1px);
  background: var(--button-bg-hover);
}

.waitlist-button.is-active {
  background: #000000;
  color: var(--button-text);
}

.menu-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--border-strong);
  background: #ffffff;
}

.menu-line {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-drawer {
  display: none;
}

.hero {
  width: min(640px, 100%);
  margin-top: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  text-align: center;
  padding-bottom: 80px;
}

.hero-logo {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  filter: none;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 48px;
  font-weight: 600;
  background: var(--button-bg);
  color: var(--button-text);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--button-bg-hover);
}

.hero-eyebrow {
  margin: 20px 0 6px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.hero-eyebrow a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-eyebrow a:hover,
.hero-eyebrow a:focus-visible {
  color: #000000;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}

.hero-meta {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.waitlist-main {
  width: min(720px, 100%);
  margin: 40px auto 96px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.waitlist-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.waitlist-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 3rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}

.waitlist-subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.waitlist-form {
  width: 100%;
  margin-top: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.waitlist-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.waitlist-form label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #f5f5f5;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: var(--button-bg);
  background: #ffffff;
}

.waitlist-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1.1em), calc(100% - 14px) calc(1.1em);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 120px;
}

.waitlist-submit {
  margin-top: 12px;
  align-self: center;
  padding: 14px 40px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.waitlist-submit:hover,
.waitlist-submit:focus-visible {
  transform: translateY(-1px);
  background: var(--button-bg-hover);
}

.waitlist-disclaimer {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.waitlist-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.waitlist-benefits h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--text);
}

.waitlist-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.waitlist-benefits li {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.waitlist-benefits img {
  width: 88px;
  height: 88px;
}

.waitlist-benefits h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.waitlist-benefits p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .header-search input {
    width: 160px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px 20px 0;
  }

  .header-inner {
    padding: 12px 16px;
  }

.nav-links,
.header-search,
.header-actions > .waitlist-button {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  }

  .site-header[data-overlay="true"] .mobile-drawer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 14px;
    padding: 18px 20px 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 500;
    color: var(--muted);
  }

  .mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--text);
  }

  .mobile-search input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f5f5f5;
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
  }

  .mobile-search input::placeholder {
    color: var(--muted);
  }

  .site-header[data-overlay="true"] .mobile-waitlist {
    display: inline-flex;
    align-self: flex-start;
  }

.mobile-waitlist {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
}

/* Footer */
.ig-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  color: #0a0a0a;
  padding: clamp(32px, 6vw, 48px) clamp(20px, 6vw, 40px);
}

.ig-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 32px);
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}

.ig-footer__brand,
.ig-footer__contact {
  min-width: 220px;
  max-width: 360px;
}

.ig-footer__brand strong {
  font-size: 1.15rem;
}

.ig-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.ig-footer__contact p {
  margin: 0;
  line-height: 1.55;
}

.ig-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}

.ig-link:hover,
.ig-link:focus-visible {
  border-bottom-color: currentColor;
}

.ig-legal {
  max-width: 1120px;
  margin: clamp(16px, 4vw, 24px) auto 0;
}

.ig-legal summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.ig-legal summary::-webkit-details-marker {
  display: none;
}

.ig-legal__content {
  margin-top: 14px;
  padding: clamp(16px, 4vw, 24px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.02);
  max-height: 60vh;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}

.ig-legal__content h3 {
  margin: 0;
}

.ig-footer__bottom {
  max-width: 1120px;
  margin: clamp(20px, 4vw, 28px) auto 0;
  text-align: center;
  color: rgba(10, 10, 10, 0.65);
}

@media (max-width: 768px) {
  .ig-footer__nav {
    width: 100%;
  }

  .ig-footer__brand,
  .ig-footer__contact {
    max-width: 100%;
  }

  .ig-legal__content {
    max-height: 50vh;
  }
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 36px);
  display: grid;
  gap: clamp(24px, 4vw, 32px);
  line-height: 1.7;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
}

.legal-page h2,
.legal-page h3 {
  margin: clamp(24px, 4vw, 32px) 0 clamp(12px, 2.5vw, 18px);
}

.legal-page p {
  margin: 0;
}

.legal-page ul {
  margin: 0;
  padding-left: 1.5rem;
  display: grid;
  gap: 8px;
}

.legal-page a {
  color: inherit;
  text-decoration: underline;
}

  .hero {
    padding: 0 24px 72px;
  }

  .waitlist-main {
    padding: 0 24px;
    gap: 60px;
  }

  .waitlist-form {
    padding: 24px;
  }

  .waitlist-benefits li {
    flex-direction: column;
    text-align: center;
  }

  .waitlist-benefits img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 520px) {
  .hero-cta {
    width: 100%;
  }
}

#intro-chatbot {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  pointer-events: none;
}

#intro-chatbot > * {
  pointer-events: auto;
  max-width: inherit;
  max-height: inherit;
}

#JotformAgent-0199df65245f7d74a0863fd5100e2864cb20 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: auto;
  max-width: inherit;
  max-height: inherit;
}

#intro-chatbot iframe {
  width: min(100%, 380px) !important;
  max-width: 100% !important;
  max-height: calc(100vh - 96px);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(10, 10, 20, 0.22);
}

@media (max-width: 768px) {
  #intro-chatbot {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    max-width: min(360px, calc(100vw - 24px));
    max-height: calc(100vh - 36px);
  }

  #intro-chatbot iframe {
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  #intro-chatbot {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 28px);
  }

  #intro-chatbot iframe {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  #intro-chatbot {
    opacity: 0;
    animation: introChatbotFadeIn 0.6s ease-out forwards;
  }
}

@keyframes introChatbotFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
