:root {
  --accent: #ff7a59;
  --accent-dark: #e8613d;
  --accent-soft: #fff5f2;
  --accent-line: #ffd3c8;
  --ink: #1a1e2e;
  --muted: #516f90;
  --soft-muted: #8fa8c2;
  --placeholder: #b0bec8;
  --line: #e8eaed;
  --section: #f7f8fa;
  --success: #00bda5;
  --dark: #111827;
  --panel-dark: #1a1e2e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

input::placeholder {
  color: var(--placeholder);
}

input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.15);
  outline: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.reveal {
  animation: fadeUp 0.7s ease-out both;
}

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

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: cover;
}

.brand-text {
  color: var(--ink);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text strong {
  color: var(--accent);
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.nav-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
}

.button {
  min-height: 48px;
  padding: 14px 32px;
  font-size: 15px;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus,
.nav-cta:hover,
.nav-cta:focus {
  background: var(--accent-dark);
}

.button:disabled {
  cursor: default;
  opacity: 0.86;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 68px);
  align-items: center;
  padding-top: 68px;
  background: #ffffff;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 68px 0 0;
  content: "";
  background: radial-gradient(circle at 50% 36%, rgba(255, 122, 89, 0.13), transparent 34%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.pill span {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}

.pill.dark {
  margin-bottom: 24px;
  border-color: rgba(255, 122, 89, 0.3);
  background: rgba(255, 122, 89, 0.15);
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: pretty;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.subnote {
  margin-top: 16px;
  color: var(--placeholder);
  font-size: 13px;
  font-weight: 500;
}

.section {
  padding: 96px 0;
}

.section-muted {
  border-top: 1px solid var(--line);
  background: var(--section);
}

.section-heading {
  margin-bottom: 52px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.feature-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--accent-soft);
  font-size: 22px;
}

.feature-card h3,
.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.feature-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  padding: 0 16px;
  text-align: center;
}

.benefit-icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--accent-line);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}

.waitlist {
  padding: 96px 48px;
  background: var(--panel-dark);
}

.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.waitlist h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.waitlist-inner > p {
  margin: 0 0 40px;
  color: var(--soft-muted);
  font-size: 15px;
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  border-radius: 16px;
  background: #ffffff;
  text-align: left;
}

.waitlist-form label {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.waitlist-form input {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.phone-input {
  display: flex;
  margin-top: 6px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.phone-input > span {
  padding: 12px 14px;
  border-right: 1.5px solid var(--line);
  background: var(--section);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-input input {
  flex: 1;
  margin-top: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.full-width {
  width: 100%;
}

.privacy-note,
.form-status {
  margin: 4px 0 0;
  color: var(--placeholder);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-weight: 700;
}

.hidden-frame {
  display: none;
}

.site-footer {
  padding: 40px 0;
  background: var(--dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--soft-muted);
  font-size: 13px;
}

.footer-brand img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

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

  .container,
  .hero-inner {
    width: min(100% - 40px, 1180px);
  }

  .hero-inner,
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .waitlist {
    padding: 72px 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 18px;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .button {
    width: 100%;
  }

  .waitlist-form {
    padding: 24px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }
}
