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

:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  --bg: #02040b;
  --muted: #94a3b8;
  --green: #22c55e;
  --green-strong: #1ebf66;
  --panel: rgba(10, 16, 28, 0.78);
  --panel-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 18% 18%, rgba(34, 197, 94, 0.24), transparent 18%),
    radial-gradient(circle at 82% 10%, rgba(59, 130, 246, 0.08), transparent 14%),
    radial-gradient(circle at 44% 58%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #02040b 0%, #050911 42%, #04070d 100%);
  color: #e5e7eb;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 22% 18%, rgba(34, 197, 94, 0.42), transparent 24%),
    radial-gradient(circle at 66% 16%, rgba(59, 130, 246, 0.12), transparent 16%),
    radial-gradient(circle at 42% 58%, rgba(255, 255, 255, 0.08), transparent 18%);
  filter: blur(62px);
  opacity: 0.92;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.14;
  z-index: -1;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
a {
  font: inherit;
}

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

.container {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(2, 8, 18, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.9rem;
  letter-spacing: -0.15em;
  font-weight: 900;
}

.brand span:last-child {
  color: var(--green);
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}

.main-nav a {
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--green);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #1ebf66);
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle span + span {
  margin-top: 6px;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pill-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  background: rgba(22, 119, 60, 0.16);
  color: #d9f99d;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pill-button:hover {
  transform: translateY(-1px);
  background: rgba(34, 197, 94, 0.22);
  box-shadow: 0 0 36px rgba(34, 197, 94, 0.22);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 4rem;
  margin: 2.8rem auto 2rem;
  min-height: calc(100vh - 96px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-copy::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -12px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 28%, rgba(34, 197, 94, 0.44), transparent 24%),
    radial-gradient(circle at 52% 42%, rgba(34, 197, 94, 0.18), transparent 32%),
    radial-gradient(circle at 60% 18%, rgba(255, 255, 255, 0.14), transparent 18%);
  filter: blur(112px);
  opacity: 0.96;
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.26);
  color: #d9f99d;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.24);
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 1rem;
  max-width: 11.2ch;
}

.hero-title .gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #22c55e 0%, #1ebf66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 44rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.9rem;
  border-radius: 20px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button.primary {
  background: linear-gradient(90deg, #22c55e, #1ebf66);
  color: #f8fafc;
  box-shadow: 0 20px 62px rgba(34, 197, 94, 0.26);
}

.hero-actions .button.primary::after {
  content: '→';
  display: inline-block;
  margin-left: 0.65rem;
  opacity: 0.92;
  transform: translateX(1px);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 72px rgba(34, 197, 94, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, #151f2d 0%, #1c3f25 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
}

.avatar + .avatar {
  margin-left: -15px;
}

.hero-proof p {
  margin: 0;
}

.hero-proof span {
  color: var(--green);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 760px;
  padding: 1.5rem 0;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 36%, rgba(34, 197, 94, 0.22), transparent 26%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.08), transparent 20%);
  filter: blur(80px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -2;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 16px;
  width: min(980px, 92%);
  height: 360px;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 55%);
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

.hero-phones-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-phones {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.feature-strip {
  margin: 1rem auto 2.5rem;
}

.page-section {
  scroll-margin-top: 110px;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.step-card,
.who-card,
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 1.7rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.step-card h3,
.who-card h3,
.contact-card h3,
.about-card h3 {
  margin: 0 0 0.85rem;
}

.step-card p,
.who-card p,
.about-copy p,
.about-card p,
.contact-card a {
  color: #cbd5e1;
  line-height: 1.8;
}

.step-icon,
.who-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
}

.who-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.who-card h3,
.contact-card h3 {
  font-size: 1.05rem;
}

.who-card p {
  margin: 0;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.about-card {
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.16);
  box-shadow: 0 28px 60px rgba(34, 197, 94, 0.08);
}

.about-card p {
  color: #d9f99d;
}

.about-copy p {
  margin-bottom: 1.25rem;
}

.contact-card a {
  color: #d9f99d;
  word-break: break-word;
}

.social-links-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e5e7eb;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 1.3rem 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
}

.feature-card:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.16);
  color: var(--green);
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.feature-panel .feature-card:nth-child(2) .feature-icon {
  background: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
}

.feature-panel .feature-card:nth-child(3) .feature-icon {
  background: rgba(168, 85, 247, 0.16);
  color: #a78bfa;
}

.feature-panel .feature-card:nth-child(4) .feature-icon {
  background: rgba(245, 158, 11, 0.18);
  color: #f59e0b;
}

.feature-content h4 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.feature-content p {
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.7;
}

.waitlist-panel {
  background: rgba(4, 9, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.55fr 0.75fr;
  gap: 1.2rem;
  align-items: center;
}

.waitlist-copy {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.waitlist-copy .icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), rgba(59, 130, 246, 0.08));
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.6rem;
}

.waitlist-copy h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.waitlist-copy p {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 29rem;
}

.waitlist-input {
  display: flex;
  align-items: center;
}

.waitlist-input input {
  width: 100%;
  min-height: 62px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  padding: 0 1.35rem;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.waitlist-input input::placeholder {
  color: #94a3b8;
}

.waitlist-action {
  display: flex;
  justify-content: flex-end;
}

.waitlist-action .button {
  min-width: 190px;
  width: 100%;
  min-height: 62px;
}

.privacy-note {
  margin-top: 1.15rem;
  color: #94a3b8;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  font-size: 0.95rem;
  text-align: center;
  animation: slideIn 0.3s ease;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #d9f99d;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#waitlist-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.75rem 0 2rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
.footer-domain {
  font-size: 0.95rem;
}

.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-domain {
  justify-self: end;
  text-align: right;
}

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

.section-anchor {
  position: relative;
  top: -110px;
  visibility: hidden;
  height: 0;
}

@media (max-width: 1120px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .feature-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-action {
    justify-content: flex-start;
  }

  .footer-domain {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem 0.55rem;
  }

  .brand {
    font-size: 1.75rem;
    letter-spacing: -0.08em;
    white-space: nowrap;
    overflow: visible;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .pill-button {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(2, 8, 18, 0.98);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    padding: 3rem 1rem 1rem;
    z-index: 1001;
    display: block;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: inline-flex;
    width: 100%;
    padding: 0.75rem 0.65rem;
    font-size: 1.05rem;
    border-radius: 18px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0.9rem auto 0.9rem;
    gap: 1.2rem;
    padding: 0 0.65rem 0.3rem;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 0.2rem;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-visual {
    order: 0;
    min-height: 380px;
    padding: 0.5rem 0 0.5rem;
  }

  .hero-visual::after {
    height: 200px;
  }

  .hero-phones {
    width: min(100%, 92vw);
    max-width: 92vw;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.4rem);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .step-grid,
  .who-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .waitlist-grid {
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .hero-section {
    margin: 1rem auto 0.9rem;
    gap: 1rem;
  }

  .hero-visual {
    min-height: 340px;
    padding: 0.5rem 0 0.5rem;
  }

  .hero-phones {
    width: min(100%, 100vw);
    max-width: 100%;
  }

  .hero-badge {
    padding: 0.75rem 0.95rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .hero-actions .button {
    width: 100%;
    min-width: auto;
  }

  .hero-proof {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .waitlist-copy h2 {
    font-size: 1.35rem;
  }

  .site-footer {
    gap: 1.25rem;
  }
}
