@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --bg: #f7f4ef;
  --ink: #111013;
  --muted: #5b5a64;
  --accent: #ff6b35;
  --accent-2: #1b7f79;
  --card: #ffffff;
  --stroke: rgba(17, 16, 19, 0.1);
  --shadow: 0 20px 50px rgba(17, 16, 19, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fef3da 0%, #f7f4ef 45%, #f1f6f7 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  background: #ffd5c2;
  top: -160px;
  left: -120px;
}

.blob-2 {
  background: #c7f0e5;
  right: -180px;
  top: 120px;
  animation-delay: 1.5s;
}

.blob-3 {
  background: #d5e3ff;
  bottom: -180px;
  left: 30%;
  animation-delay: 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(24px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 239, 0.7);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.18);
}

.menu {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

.menu a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #ff9a5c);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

.btn.ghost {
  border-color: var(--stroke);
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.hero-stats h3 {
  margin: 0;
  font-size: 1.6rem;
}

.hero-stats p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
}

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

.screen-header {
  display: flex;
  gap: 8px;
  padding: 6px 0 12px;
}

.screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e1e1e7;
}

.screen-body {
  display: grid;
  gap: 16px;
}

.pill {
  background: rgba(27, 127, 121, 0.1);
  color: var(--accent-2);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  font-weight: 600;
  font-size: 0.85rem;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  padding: 16px;
  background: #fff;
}

.card h4 {
  margin: 0 0 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.card.highlight {
  background: linear-gradient(140deg, #1b7f79, #1b9a90);
  color: #fff;
}

.meter .bar {
  margin-top: 8px;
  height: 10px;
  border-radius: 999px;
  background: #efeef0;
  overflow: hidden;
}

.meter .bar span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.floating-tag {
  position: absolute;
  right: -18px;
  top: 28px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.logos {
  padding: 10px 0 40px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

.logo-cloud {
  display: flex;
  gap: 20px;
  font-weight: 600;
  flex-wrap: wrap;
}

.features,
.workflow,
.pricing,
.faq {
  padding: 70px 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.feature-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--stroke);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.workflow-copy ol {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.workflow-panel {
  display: grid;
  gap: 18px;
}

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

.panel-card.secondary {
  background: linear-gradient(120deg, #ffe8db, #fff6d4);
  box-shadow: none;
}

.timeline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}

.timeline .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline .line {
  flex: 1;
  height: 2px;
  background: var(--stroke);
}

.pricing-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--stroke);
  position: relative;
}

.price-card.featured {
  background: #111013;
  color: #fff;
  transform: translateY(-12px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price {
  font-size: 2.2rem;
  margin: 12px 0 6px;
}

.price-note {
  color: var(--muted);
  margin: 0 0 18px;
}

.price-card.featured .price-note {
  color: rgba(255, 255, 255, 0.7);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.faq-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

details {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--stroke);
}

details summary {
  cursor: pointer;
  font-weight: 600;
}

.cta {
  padding: 40px 0 90px;
}

.cta-box {
  background: linear-gradient(120deg, #1b7f79, #48a18d);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--stroke);
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footnote {
  text-align: center;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 0.85rem;
}

.logo.small {
  font-size: 1rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .menu {
    position: absolute;
    top: 64px;
    right: 4vw;
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
  }

  .menu.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
  }
}
