:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #627078;
  --line: #dce4e1;
  --paper: #f5f7f4;
  --white: #ffffff;
  --green: #1d7655;
  --green-dark: #13523d;
  --green-soft: #e6f2ec;
  --navy: #1d3440;
  --warm: #b86e36;
  --cool: #486d8a;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.6; }
a { color: inherit; }

.site-header, footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header { min-height: 84px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 750; letter-spacing: -.02em; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px 10px 10px 3px; background: var(--green); color: white; font-size: 17px;
  box-shadow: 0 5px 14px rgba(29, 118, 85, .18);
}
.site-header nav, footer nav { display: flex; gap: 28px; }
.site-header nav a, footer a { text-decoration: none; color: var(--muted); font-size: 14px; }
.site-header nav a:hover, .site-header nav a.active, footer a:hover { color: var(--ink); }

main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: 610px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px;
  padding: 76px 0 88px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green-dark); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #2b9c70; box-shadow: 0 0 0 5px var(--green-soft); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin: 20px 0 22px; font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -.055em; font-weight: 760; }
h2 { font-size: clamp(28px, 4vw, 43px); line-height: 1.1; letter-spacing: -.04em; }
h3 { font-size: 20px; letter-spacing: -.025em; }
.lead { max-width: 700px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.button {
  display: inline-flex; align-items: center; justify-content: center; margin-top: 16px; padding: 13px 20px;
  border-radius: 10px; background: var(--navy); color: white; text-decoration: none; font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 24px rgba(29, 52, 64, .16);
}
.button:hover { background: #102832; }

.preview {
  position: relative; padding: 22px; border: 1px solid rgba(23, 33, 38, .08); border-radius: 22px;
  background: rgba(255, 255, 255, .92); box-shadow: 0 28px 70px rgba(35, 65, 54, .13);
}
.preview::before {
  content: ""; position: absolute; z-index: -1; width: 72%; height: 72%; right: -8%; bottom: -10%;
  border-radius: 50%; background: #dfece5; filter: blur(24px);
}
.preview-top { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 20px; font-weight: 750; }
.preview-state { border-radius: 999px; padding: 5px 10px; background: var(--green-soft); color: var(--green-dark); font-size: 11px; }
.file-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 15px 4px; border-top: 1px solid #edf0ee; }
.file-row strong, .file-row small { display: block; }
.file-row strong { font-size: 14px; }
.file-row small { margin-top: 2px; color: #819088; font-size: 11px; }
.file-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; color: var(--green-dark); background: var(--green-soft); font-size: 11px; font-weight: 800; }
.file-icon.warm { color: #8f4f23; background: #f8e9dd; }
.file-icon.cool { color: #345b79; background: #e5eef5; }
.check { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: var(--green); background: var(--green-soft); font-weight: 900; font-size: 12px; }
.pending { color: #98a29e; letter-spacing: 2px; }

.features { padding: 92px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: .45fr 1fr; align-items: start; gap: 28px; margin-bottom: 52px; }
.section-heading h2 { max-width: 700px; margin-bottom: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.5); }
.feature-grid article:hover { background: var(--white); box-shadow: 0 14px 38px rgba(41, 62, 53, .07); transform: translateY(-2px); transition: .2s ease; }
.feature-number { display: block; margin-bottom: 38px; color: var(--green); font-size: 12px; font-weight: 800; }
.feature-grid p { color: var(--muted); margin-bottom: 0; }

.beta-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: end;
  margin: 24px 0 96px; padding: 48px; border-radius: 20px; color: white; background: var(--navy);
}
.beta-card h2 { margin: 14px 0 0; }
.beta-card .eyebrow { color: #9ed5bd; }
.beta-card p { margin-bottom: 5px; color: #c4d0d5; font-size: 17px; }

.inner { max-width: 960px; min-height: calc(100vh - 184px); padding: 90px 0 110px; }
.inner h1 { font-size: clamp(40px, 6vw, 64px); }
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 60px 0; }
.prose-grid section, .prose section { padding: 26px 0; border-top: 1px solid var(--line); }
.prose-grid p, .prose p { color: var(--muted); }
.prose section { max-width: 760px; }
.text-link { display: inline-block; margin-top: 32px; color: var(--green-dark); text-decoration: none; font-weight: 750; }
.text-link:hover { text-decoration: underline; }
.service-list { margin: 56px 0 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.service-list > div { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 24px; border-top: 1px solid #edf0ee; }
.service-list > div:first-child { border-top: 0; }
.service-list strong, .service-list small { display: block; }
.service-list small { color: var(--muted); margin-top: 2px; }
.service-ok { display: flex; align-items: center; gap: 9px; color: var(--green-dark); font-size: 13px; font-weight: 750; }
.service-ok i { width: 9px; height: 9px; border-radius: 50%; background: #2b9c70; box-shadow: 0 0 0 4px var(--green-soft); }
.muted { color: var(--muted); font-size: 13px; }
.error-page { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.error-code { color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .14em; }

footer { min-height: 100px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

@media (max-width: 800px) {
  .site-header, footer, main { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 70px; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 12px; }
  .brand { font-size: 14px; }
  .hero { grid-template-columns: 1fr; gap: 54px; padding: 60px 0 70px; }
  .preview { max-width: 600px; }
  .section-heading { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .feature-number { margin-bottom: 22px; }
  .beta-card, .prose-grid { grid-template-columns: 1fr; }
  .beta-card { padding: 32px 26px; }
  .inner { padding: 65px 0 90px; }
}

@media (max-width: 520px) {
  .site-header nav a:first-child { display: none; }
  h1 { font-size: 42px; }
  .preview { padding: 16px; border-radius: 16px; }
  .file-row { grid-template-columns: 38px 1fr; }
  .file-row > :last-child { display: none; }
  .service-list > div { align-items: flex-start; flex-direction: column; }
  footer { padding: 24px 0; align-items: flex-start; flex-direction: column; gap: 16px; }
  footer nav { gap: 16px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feature-grid article:hover { transform: none; transition: none; }
}
