* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0f172a;
  --navy-light: #172554;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --text: #111827;
  --muted-text: #4b5563;
  --light-text: #dbeafe;
  --border: #e5e7eb;
  --soft-bg: #f8fafc;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* Header */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  height: 56px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #374151;
  font-weight: 600;
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: var(--white);
  color: var(--orange);
  border: 1px solid var(--orange);
}

.btn-outline:hover {
  background: #fff7ed;
}

/* Hero */

.hero {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 35%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: #fdba74;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.eyebrow.dark {
  color: var(--orange);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 24px;
}

.hero-text {
  color: var(--light-text);
  font-size: 1.12rem;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 360px;
  background: var(--white);
  color: var(--text);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.phone-top {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 0 auto 28px;
}

.preview-label {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

.app-preview {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 22px;
  padding: 24px;
}

.app-preview h2 {
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.app-preview p {
  color: var(--muted-text);
  margin-bottom: 14px;
}

.app-preview span {
  color: var(--orange);
  font-weight: 700;
}

.preview-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.preview-list div {
  height: 16px;
  border-radius: 999px;
  background: #e5e7eb;
}

.preview-list div:nth-child(2) {
  width: 82%;
}

.preview-list div:nth-child(3) {
  width: 64%;
}

/* Sections */

.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--soft-bg);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2,
.about-grid h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-heading p,
.about-grid p,
.cta-card p {
  color: var(--muted-text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.feature-card p {
  color: var(--muted-text);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about-grid p + p {
  margin-top: 16px;
}

.cta-card {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 35%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
}

.cta-card p {
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 28px;
}

/* Inner Pages */

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 35%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 82px 0;
  text-align: center;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.page-content {
  padding: 76px 0;
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 42px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.legal-card h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted-text);
  margin-bottom: 13px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-card li {
  padding-left: 4px;
}

.last-updated {
  margin-top: 40px;
  color: #6b7280;
  font-size: 0.95rem;
}

/* Support Page */

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.support-card {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
}

.support-card h3 {
  margin-bottom: 10px;
}

.support-card p {
  color: var(--muted-text);
}

/* Footer */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--muted-text);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #374151;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--orange);
}

/* Mobile */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .site-logo {
    height: 44px;
  }

  .main-nav {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .about-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 38px 24px;
  }

  .legal-card {
    padding: 30px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}