:root {
  --peach: #f97316;
  --rose: #fb7185;
  --cream: #fff3ec;
  --ink: #2f0f05;
  --muted: #87412d;
  --white: #ffffff;
  --border: rgba(249, 115, 22, 0.16);
  --shadow-soft: 0 16px 36px rgba(249, 115, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at -10% -10%, rgba(251, 113, 133, 0.25), transparent 45%),
              radial-gradient(circle at 110% 0%, rgba(249, 115, 22, 0.18), transparent 50%),
              #fff7f3;
  color: var(--ink);
}

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

a:hover {
  color: var(--peach);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #f97316);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.28);
}

.brand-word {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}






nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--peach);
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.25);
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--peach);
  border: 1px solid rgba(249, 115, 22, 0.4);
  box-shadow: none;
}

main {
  padding: 80px 6vw;
  display: grid;
  gap: 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.section-heading {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  margin: 0;
}

.section-description {
  text-align: center;
  max-width: 680px;
  margin: 16px auto 48px;
  color: var(--muted);
  line-height: 1.6;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}

.card h3 {
  margin: 0;
  color: var(--peach);
  font-family: 'Manrope', sans-serif;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stat-list {
  display: grid;
  gap: 20px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.12);
}

.stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.stat strong {
  font-size: 2.4rem;
  color: var(--peach);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  
  display: grid;
  gap: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--peach), var(--rose));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-empty {
  grid-column: 3;
}

.timeline-item:nth-child(odd) .timeline-empty {
  grid-column: 1;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 0 0 8px rgba(255, 247, 243, 0.9), 0 0 0 12px var(--border);
  grid-column: 2;
  margin: 0 auto;
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--peach);
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline-empty {
  height: 1px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--peach);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.list {
  background: rgba(255, 243, 236, 0.82);
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  padding: 24px 28px;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
}

.list li {
  
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.6;
}

.list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--peach);
  font-weight: 700;
}

.quote-card {
  background: rgba(251, 113, 133, 0.1);
  border-radius: 24px;
  border: 1px solid rgba(251, 113, 133, 0.25);
  padding: 28px;
  color: var(--muted);
  font-style: italic;
  box-shadow: var(--shadow-soft);
}

.quote-card strong {
  display: block;
  margin-top: 14px;
  color: var(--peach);
  font-style: normal;
}

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

.price-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 28px;
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.price-card h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--peach);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price-card ul li::before {
  content: '•';
  margin-right: 8px;
  color: var(--peach);
  font-weight: 700;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.table th,
.table td {
  padding: 18px 24px;
  text-align: left;
  color: var(--muted);
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}

.table th {
  background: rgba(249, 115, 22, 0.08);
  font-weight: 700;
  color: var(--peach);
}

footer {
  margin-top: 40px;
  padding: 40px 6vw 60px;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.18), rgba(249, 115, 22, 0.12));
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: var(--ink);
}

footer h4 {
  margin-top: 0;
}

footer a {
  color: var(--peach);
  text-decoration: none;
  font-weight: 600;
}

form {
  display: grid;
  gap: 20px;
}

label {
  font-weight: 600;
  color: var(--muted);
}

input,
textarea,
select {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

@media (max-width: 780px) {
  header {
    flex-direction: column;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  main {
    padding: 60px 6vw;
    gap: 60px;
  }

  .timeline::before {
    left: 32px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
  }

  .timeline-item:nth-child(even) .timeline-empty,
  .timeline-item:nth-child(odd) .timeline-empty {
    display: none;
  }

  .timeline-dot {
    justify-self: flex-start;
  }
}


.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: #ffffff;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.menu-toggle .menu-icon,
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--peach);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle .menu-icon::before {
  transform: translateY(-6px);
}

.menu-toggle .menu-icon::after {
  transform: translateY(6px);
}

.header-nav-open .menu-toggle .menu-icon {
  background: transparent;
}

.header-nav-open .menu-toggle .menu-icon::before {
  transform: rotate(45deg);
}

.header-nav-open .menu-toggle .menu-icon::after {
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--peach);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.25);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  header {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 6vw;
    left: 6vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(249, 115, 22, 0.22);
  }

  .header-nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    box-shadow: none;
  }
}

/* ===============================================
   MODAL & AUTH STYLES - CLEAN & COMPACT
   =============================================== */

.modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.auth-modal.modal-visible {
  opacity: 1;
}

.auth-modal.modal-visible .auth-dialog {
  transform: scale(1);
  opacity: 1;
}

.auth-modal[hidden] {
  display: none;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
}

.auth-dialog {
  position: relative;
  width: min(520px, 92vw);
  background: white;
  border-radius: 20px;
  padding: 36px 40px 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.2s ease;
}

.auth-close:hover {
  background: #f1f5f9;
  color: #64748b;
}

/* Header */
.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* Form */
.auth-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.input-label {
  display: grid;
  gap: 7px;
}

.label-text {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
}

.optional-tag {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

.input-field {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 0.95rem;
  background: white;
  transition: all 0.15s ease;
  color: #0f172a;
}

.input-field:hover {
  border-color: #cbd5e1;
}

.input-field:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}

.input-field::placeholder {
  color: #cbd5e1;
}

/* Use Case Pills */
.use-case-pills {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.pill-option {
  flex: 1;
  cursor: pointer;
}

.pill-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  transition: all 0.2s ease;
  text-align: center;
}

.pill-option:hover .pill-content {
  border-color: #f97316;
  background: #fffbf7;
}

.pill-option input[type="radio"]:checked ~ .pill-content {
  border-color: #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbf7 100%);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.pill-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.pill-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

/* Buttons */
.btn-large {
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-large:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

.btn-large svg {
  transition: transform 0.2s ease;
}

.btn-large:hover svg {
  transform: translateX(2px);
}

/* Feedback */
.auth-feedback {
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  color: #1e40af;
  border: 1px solid rgba(59, 130, 246, 0.15);
  animation: slideDown 0.2s ease;
}

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

.auth-feedback[data-tone="error"] {
  background: rgba(248, 113, 113, 0.08);
  color: #b91c1c;
  border-color: rgba(248, 113, 113, 0.15);
}

.auth-feedback[data-tone="success"] {
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  border-color: rgba(34, 197, 94, 0.15);
}

/* Form Footer */
.form-footer {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.social-proof-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.social-proof-compact svg {
  flex-shrink: 0;
}

.switch-mode {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin: 0;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile */
@media (max-width: 640px) {
  .auth-dialog {
    padding: 28px 24px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-case-pills {
    flex-direction: column;
  }

  .pill-content {
    flex-direction: row;
    padding: 12px 14px;
    text-align: left;
  }

  .pill-icon {
    font-size: 1.3rem;
  }

  .pill-label {
    font-size: 0.875rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links .nav-cta {
  margin-left: auto;
}

.link-button {
  background: none;
  border: none;
  color: var(--peach);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.link-button:hover {
  opacity: 0.85;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
