:root {
  --bg: #fffaf5;
  --bg-soft: #fff3e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1f1720;
  --muted: #6f6470;
  --border: rgba(31, 23, 32, 0.08);
  --shadow: 0 18px 45px rgba(31, 23, 32, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --accent-gradient: linear-gradient(135deg, #cf6a1f 0%, #e99542 58%, #f5c893 100%);
  --accent-dark: #c94d00;
  --accent-mid: #ff8f1f;
  --accent-light: #ffd08a;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 31, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 208, 138, 0.16), transparent 22%),
    linear-gradient(180deg, #fffaf5 0%, #fff7f0 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 245, 0.76);
  border-bottom: 1px solid rgba(31, 23, 32, 0.06);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d9782e 0%, #e7a35f 100%);
  color: white;
  box-shadow: 0 8px 18px rgba(201, 77, 0, 0.10);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border);
  color: var(--text);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 10ch;
  margin-bottom: 1.2rem;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 28px;
  display: block;
}

section {
  padding: 1.2rem 0 4.5rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  max-width: 68ch;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(217, 120, 46, 0.18), rgba(245, 200, 147, 0.28));
  border: 1px solid rgba(217, 120, 46, 0.14);
  margin-bottom: 1rem;
  box-shadow: none;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.98rem;
}

.card ul {
  margin-top: 0.8rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.card-link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.feature-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.feature-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(31, 23, 32, 0.06);
}

.feature-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.feature-dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 0.35rem;
  background: #e29a51;
}

.cta {
  padding-bottom: 5.5rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(207, 106, 31, 0.90), rgba(233, 149, 66, 0.88), rgba(245, 200, 147, 0.82));
  color: white;
  border-radius: 34px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(201, 77, 0, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-featured {
  border: 1px solid rgba(217, 120, 46, 0.18);
}

.card-coming-soon {
  background: rgba(255, 255, 255, 0.55);
}

.card-coming-soon h3 {
  color: var(--text);
}

.card-coming-soon p {
  color: var(--muted);
}

.cta-box p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.55rem;
}

.site-footer {
  border-top: 1px solid rgba(31, 23, 32, 0.08);
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-actions,
  .hero-meta,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    padding: 1.5rem;
  }

  .phone-screen {
    min-height: 500px;
  }
}
