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

:root {
  --bg: #f6f2ed;
  --bg-dark: #0f1115;
  --text: #0f1115;
  --muted: #6b6f76;
  --accent: #ff6b4a;
  --accent-dark: #e45432;
  --ink: #101114;
  --card: #ffffff;
  --line: rgba(15, 17, 21, 0.08);
  --shadow: 0 30px 60px rgba(15, 17, 21, 0.15);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 20%, #fff4e6, transparent 45%),
    radial-gradient(circle at 90% 10%, #e1f6ff, transparent 40%),
    linear-gradient(120deg, #f6f2ed, #f9f7f4);
  min-height: 100vh;
  font-size: 15px;
}

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

.hero {
  position: relative;
  padding: 32px 6vw 120px;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 40px;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

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

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  margin: 12px 0 20px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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: var(--accent);
  color: #fff;
  box-shadow: 0 12px 25px rgba(255, 107, 74, 0.35);
}

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

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.85rem;
  background: #fff2ec;
  color: var(--accent-dark);
}

.hero-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.metric {
  font-size: 1.2rem;
  font-weight: 700;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-card {
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 17, 21, 0.06);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef7f7;
  color: #22736a;
  font-weight: 600;
  font-size: 0.78rem;
}

.card-screen {
  margin: 20px 0;
  background: #f4f5f7;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 17, 21, 0.05);
}

.screen-header {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e2e2;
}

.screen-body {
  padding: 18px;
}

.screen-block {
  height: 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
}

.screen-block.short {
  width: 70%;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.screen-card {
  height: 70px;
  background: #fff;
  border-radius: 12px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.card-footer p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.25), transparent 70%);
  right: -120px;
  top: 120px;
  z-index: -1;
}

.hero-ribbon {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(140deg, #ffe4db, #f6f2ed);
  border-radius: 40px;
  left: -40px;
  bottom: 40px;
  transform: rotate(-18deg);
  z-index: -1;
}

.section {
  padding: 90px 6vw;
}

.section-head {
  max-width: 640px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 12px 0 16px;
}

.section-head p {
  color: var(--muted);
}

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

.service-card {
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(15, 17, 21, 0.05);
}

.service-card h3 {
  margin-top: 0;
}

.cta {
  padding-top: 70px;
}

.cta-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-form {
  display: grid;
  gap: 14px;
}

input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note span {
  color: var(--text);
  font-weight: 600;
}

.footer {
  padding: 60px 6vw 80px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.15s;
}

.reveal.delay-2 {
  animation-delay: 0.3s;
}

.reveal.delay-3 {
  animation-delay: 0.45s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav-links {
    display: none;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 5vw 80px;
  }

  .section {
    padding: 70px 5vw;
  }

  .hero-metrics {
    gap: 16px;
  }
}
