:root {
  --ink: #1a2332;
  --muted: #5a6876;
  --line: #c5d4d0;
  --paper: #f3f7f5;
  --mist: #e4efeb;
  --teal: #0d7a6f;
  --teal-deep: #0a5c54;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 35, 50, 0.08);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 122, 111, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(26, 35, 50, 0.06), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 42%, var(--white) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.brand span {
  color: var(--teal);
}

.nav-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 4.5rem);
}

.hero-copy {
  animation: rise 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 34rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
  animation: soft-pulse 2.8s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--teal-deep);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--teal);
}

.trust-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  animation: rise 0.9s ease 0.12s both;
}

.compare {
  display: grid;
  gap: 0.85rem;
}

.compare-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(197, 212, 208, 0.9);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-label {
  padding: 0.65rem 1rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.compare-card img {
  width: 100%;
}

.arrow {
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  animation: bob 2.2s ease-in-out infinite;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 40rem;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.capabilities li {
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid var(--line);
  animation: rise 0.7s ease both;
}

.capabilities li:nth-child(1) { animation-delay: 0.05s; }
.capabilities li:nth-child(2) { animation-delay: 0.1s; }
.capabilities li:nth-child(3) { animation-delay: 0.15s; }
.capabilities li:nth-child(4) { animation-delay: 0.2s; }
.capabilities li:nth-child(5) { animation-delay: 0.25s; }
.capabilities li:nth-child(6) { animation-delay: 0.3s; }

.capabilities strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.capabilities span {
  color: var(--muted);
  font-size: 0.95rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.facts article {
  padding-top: 0.75rem;
  border-top: 2px solid var(--teal);
}

.facts h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  max-width: 1120px;
  margin: 0 auto 3rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band .cta-title {
  flex: 1 1 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.cta-band p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
}

.app-shot {
  margin: 1rem 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.app-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.faq {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 0.35rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 42rem;
}

.legal {
  margin-top: 0.75rem;
  max-width: 42rem;
}

.legal p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 122, 111, 0.0); }
  50% { box-shadow: 0 0 0 8px rgba(13, 122, 111, 0.12); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 1.75rem;
  }

  .capabilities,
  .facts {
    grid-template-columns: 1fr;
  }

  .capabilities li {
    border-bottom: none;
    border-left: 3px solid var(--line);
    padding-left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
