:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5f6b76;
  --line: #dbe3ea;
  --panel: #ffffff;
  --soft: #f4f7f9;
  --brand: #0f8a88;
  --brand-dark: #0a5f5d;
  --gold: #d9982f;
  --danger: #8b2f2f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafb;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(248, 250, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--brand-dark);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(40px, 7vw, 92px) clamp(18px, 5vw, 64px) 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(15, 138, 136, 0.10), rgba(217, 152, 47, 0.08)),
    #f8fafb;
}

.hero-logo {
  width: min(360px, 86vw);
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lead {
  margin: 18px 0 0;
  max-width: 720px;
  color: #26313a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}

.note {
  max-width: 640px;
  color: var(--danger);
  font-size: 0.93rem;
}

.process-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(35, 49, 61, 0.12);
}

.process-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section,
.band {
  padding: clamp(44px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.section {
  max-width: 1220px;
  margin: 0 auto;
}

.band {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-copy {
  max-width: 900px;
}

.feature-grid,
.pricing-grid,
.screenshot-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

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

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

figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

figure img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

article,
.price-card {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

article p,
.price-card p,
.section p,
.band p {
  color: var(--muted);
}

.price-card.featured {
  border-color: rgba(15, 138, 136, 0.48);
  box-shadow: inset 0 0 0 1px rgba(15, 138, 136, 0.12);
}

.price {
  color: var(--brand-dark) !important;
  font-size: 1.8rem;
  font-weight: 900;
}

ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.disclaimer p:last-child {
  color: #3e4a54;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
}

.site-footer a {
  color: var(--brand-dark);
}

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

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .feature-grid,
  .pricing-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .cta-row,
  .button {
    width: 100%;
  }

  .process-row {
    grid-template-columns: 1fr;
  }
}
