﻿@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f3ef;
  --bg-deep: #efe8e1;
  --ink: #201b18;
  --muted: #6d625c;
  --accent: #f7a07b;
  --accent-strong: #e46b54;
  --card: #fffaf6;
  --stroke: rgba(32, 27, 24, 0.12);
  --shadow: 0 24px 60px rgba(32, 27, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  background: radial-gradient(circle at 15% 15%, rgba(247, 160, 123, 0.25), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(228, 107, 84, 0.2), transparent 45%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  color: var(--ink);
  min-height: 100vh;
}

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

#app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.brand img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow);
  font-weight: 500;
}

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

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  margin: 12px 0 16px;
}

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

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(247, 160, 123, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

button,
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(32, 27, 24, 0.18);
}

.primary {
  background: var(--accent-strong);
  color: #fffaf6;
}

.secondary {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--ink);
}

.ghost {
  background: transparent;
  border: 1px dashed rgba(32, 27, 24, 0.4);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  width: 280px;
  height: 520px;
  border-radius: 42px;
  background: #0f0f0f;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(32, 27, 24, 0.3);
}

.screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(160deg, #fff4eb, #f9d7c6);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-header span {
  font-weight: 600;
  font-size: 1.1rem;
}

.screen-header small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.screen-timeline {
  display: grid;
  gap: 12px;
}

.pill {
  background: rgba(255, 255, 255, 0.65);
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
}

.pill.active {
  background: #fffaf6;
  border: 1px solid rgba(228, 107, 84, 0.4);
}

.screen-footer {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(32, 27, 24, 0.2);
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 160, 123, 0.5), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}

.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin: 0 0 12px;
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

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

.feature-card {
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 12px 0 8px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.icon {
  font-size: 1.6rem;
}

.workflow {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 60px 40px;
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fffaf6;
  border: 1px solid var(--stroke);
}

.step-index {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-strong);
}

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

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.checklist li {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  border-radius: 14px;
}

.download {
  text-align: center;
}

.download-card {
  margin: 0 auto;
  max-width: 680px;
  background: #fffaf6;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.download-actions {
  display: flex;
  gap: 12px;
}

.site-footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--muted);
}

.site-footer .brand {
  justify-content: center;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-bottom: 40px;
  }

  .workflow {
    padding: 40px 24px;
  }

  .download-card {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  #app {
    padding: 24px 18px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 16px;
  }

  .phone {
    width: 240px;
    height: 460px;
  }
}
