* {
  box-sizing: border-box;
}

:root {
  --bg: #f7efe6;
  --bg-soft: #fcf7f1;
  --bg-card: #f4ebdf;
  --bg-card-soft: #eedfd1;
  --text: #2b1a14;
  --muted: #7a6a63;
  --line: #e2d0bd;
  --line-soft: #e4d4c4;
  --accent: #cc5500;
  --accent-dark: #a84300;
  --banner: #a64014;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(73, 46, 35, 0.08);
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg-soft);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.page {
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, #f6efe6 100%);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251, 247, 241, 0.82);
  border-bottom: 1px solid rgba(226, 208, 189, 0.7);
}

.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.header-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) translateX(-6px);
  animation: logoReveal 0.8s ease forwards;
}

.header-brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0;
  transform: translateY(6px);
  animation: textReveal 0.6s ease forwards;
  animation-delay: 0.25s;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.header-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--accent-dark);
}

.header-cta:active {
  transform: scale(0.98);
}

/* Hero */

.hero {
  width: 100%;
  max-width: 1240px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 36px 24px 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 700px;
}

.subtext {
  margin: 0 0 28px;
  max-width: 580px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  padding: 11px 15px;
  border-radius: 999px;
  background: #efe5d8;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
}

.waitlist-form,
.success-card {
  width: 100%;
  max-width: 560px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.field input {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid #dacbbb;
  background: var(--white);
  padding: 0 16px;
  font-size: 16px;
  color: var(--text);
  outline: none;
}

.field input:focus {
  border-color: var(--accent);
}

#submit-btn,
#close-modal,
.mock-button,
.section-cta-btn {
  border: none;
  border-radius: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

#submit-btn:hover,
#close-modal:hover,
.mock-button:hover,
.section-cta-btn:hover {
  background: var(--accent-dark);
}

#submit-btn:active,
#close-modal:active,
.mock-button:active,
.section-cta-btn:active {
  transform: scale(0.98);
}

#submit-btn {
  width: 100%;
  padding: 17px 22px;
  margin-top: 6px;
}

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

.tiny-note,
.form-message,
.success-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.tiny-note {
  margin-top: 14px;
}

.success-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fde5d6;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.success-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.form-message.error {
  color: #b33600;
}

.form-message.success {
  color: #2f7a43;
}

.visual-card {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-radius: 40px;
  background: linear-gradient(180deg, #f3e8da 0%, #eadbc8 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.phone-mockup {
  width: 350px;
  max-width: 100%;
  background: #fff7f4;
  border: 8px solid #1f1f21;
  border-radius: 42px;
  padding: 18px 16px 20px;
  box-shadow: 0 30px 80px rgba(30, 19, 14, 0.14);
}

.phone-top {
  width: 124px;
  height: 18px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #111;
}

.mock-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.mock-brand {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mock-header h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.mock-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fde5d6;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.mock-search {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f3e7de;
  color: #8a7a73;
  font-size: 14px;
}

.mock-card {
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 22px;
  border: 1px solid #efe1d5;
  background: #fff;
}

.mock-card.featured {
  padding: 0;
}

.mock-image {
  height: 156px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background:
    linear-gradient(rgba(160, 72, 34, 0.15), rgba(160, 72, 34, 0.15)),
    url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80");
}

.mock-card-body {
  padding: 16px;
}

.mock-card-body h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.mock-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.mini-card {
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid #efe1d5;
  background: #fff;
  text-align: center;
}

.mini-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.mini-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.mock-button {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
}

/* Info Sections */

.info-section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px 88px;
}

.partner-section {
  padding-top: 8px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.section-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-subtext {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.benefit-card {
  min-height: 270px;
  padding: 28px 28px 30px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  box-shadow: 0 8px 24px rgba(73, 46, 35, 0.05);
}

.benefit-card-wide {
  min-height: 220px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--bg-card-soft);
  font-size: 26px;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 18px 30px;
}

/* CTA Banner */

.cta-banner {
  margin-top: 6px;
  background: var(--banner);
  color: #fff8f2;
  padding: 100px 24px;
}

.cta-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.cta-banner-inner p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 248, 242, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.cta-primary-link,
.cta-secondary-link {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.cta-primary-link {
  background: #f4ebdf;
  color: #2b1a14;
}

.cta-secondary-link {
  background: transparent;
  color: #fff8f2;
  border: 1px solid rgba(255, 248, 242, 0.28);
}

.cta-primary-link:hover,
.cta-secondary-link:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

/* Footer */

.site-footer {
  background: #f8f1e8;
  border-top: 1px solid #ead9c8;
  padding: 28px 24px 36px;
}

.footer-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr auto;
  gap: 18px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #efe3d5;
  border: 1px solid #e3d1bf;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: #eadbc9;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(33, 18, 10, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.modal-content {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(31, 18, 10, 0.18);
  animation: modalFadeIn 0.35s ease;
}

.modal-content h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  color: var(--text);
}

.modal-content .success-text {
  margin: 0;
  font-size: 15px;
}

#close-modal {
  margin-top: 22px;
  width: 100%;
  padding: 14px 18px;
}

.hidden {
  display: none !important;
}

/* Animations */

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .visual-card {
    min-height: auto;
  }

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

  .info-section {
    padding-bottom: 70px;
  }

  .cta-banner {
    padding: 80px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-socials,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

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

  .header-nav a {
    font-size: 14px;
  }

  .header-cta {
    width: 100%;
    max-width: 260px;
  }

  .hero {
    padding: 28px 16px 40px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .visual-card {
    padding: 18px;
    border-radius: 28px;
  }

  .phone-mockup {
    width: 100%;
  }

  .info-section {
    padding: 28px 16px 56px;
  }

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

  .benefit-card,
  .benefit-card-wide {
    min-height: auto;
  }

  .benefit-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 24px;
  }

  .section-intro h2 {
    font-size: 2.3rem;
  }

  .section-subtext {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 70px 16px;
  }

  .cta-banner-inner h2 {
    font-size: 2.5rem;
  }

  .cta-banner-inner p {
    font-size: 1rem;
  }

  .cta-primary-link,
  .cta-secondary-link {
    width: 100%;
    max-width: 320px;
  }

  .modal-content {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .footer-logo {
    width: 32px;
    height: 32px;
  }

  .site-footer {
    padding: 26px 16px 34px;
  }
}