:root {
  --bg: #e0cfbf;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #212121;
  --accent-strong: #212121;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #2564eb2a;
  filter: blur(0px);
  z-index: -1;
}

body::before {
  top: -160px;
  right: -120px;
}

body::after {
  bottom: -180px;
  left: -140px;
  background: #2564eb2a;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

h1, h2, h3, h4 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

p {
  margin-top: 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

.logo {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

main {
  padding: 60px 0 90px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.15);
}

.section {
  margin-bottom: 64px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 10px;
}

.tagline {
  background: #2564eb5e;
  border-left: 4px solid var(--border);
  padding: 18px 20px;
  border-radius: 12px;
  font-style: italic;
  color: var(--ink);
  font-size: 2rem;
  text-align: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #2564eb5e;
  color: var(--accent-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table thead th {
  font-size: 0.95rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.table-sub {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.checklist {
  padding-left: 18px;
  margin: 0;
}

.callout {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 14px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
}

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

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(8px);
}

.js body.loaded .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animations {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-self: center;
}

.icon {
  width: 120px;
  height: 120px;
}

/* =====================
  Code animation
  ===================== */
.code-line {
animation: code 2.2s linear infinite;
opacity: 0;
transform-box: fill-box;
transform-origin: left center;
}

.code-line:nth-of-type(1) { animation-delay: 0s; }
.code-line:nth-of-type(2) { animation-delay: 0.3s; }
.code-line:nth-of-type(3) { animation-delay: 0.6s; }
.code-line:nth-of-type(4) { animation-delay: 0.9s; }
.code-line:nth-of-type(5) { animation-delay: 1.2s; }

@keyframes code {
  0% {
    transform: translateX(-8px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateX(8px);
    opacity: 0;
  }}

  @media (max-width: 600px) {
  .icon {
    width: 100px;
    height: 100px;
  }
}

/* =====================
  Coffee steam
  ===================== */
.steam path {
animation: steam 2.5s ease-in-out infinite;
opacity: 0;
}

.steam path:nth-child(1) { animation-delay: 0s; }
.steam path:nth-child(2) { animation-delay: 0.4s; }
.steam path:nth-child(3) { animation-delay: 0.8s; }

@keyframes steam {
  0% {
    transform: translateY(6px);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-16px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 15px;
  }

  .hero {
    margin-bottom: 48px;
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}

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