:root {
  --bg: #ffffff;
  --text: #071111;
  --muted: #68706e;
  --line: #e7eeec;
  --soft: #f5f8f7;
  --brand: #10cbbb;
  --dark: #050606;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; text-transform: uppercase; font-size: 12px; color: var(--muted); }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 700; flex-wrap: wrap; justify-content: flex-end; }
.container { max-width: 1180px; margin: 0 auto; padding: 42px 18px; }
.hero {
  background: radial-gradient(circle at 20% 20%, rgba(16,203,187,.18), transparent 34%), linear-gradient(90deg, #050606, #071411 58%, #050606);
  color: white;
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 72px 18px; display: grid; gap: 34px; grid-template-columns: 1.1fr .9fr; }
.hero-inner.single { display: block; }
.hero-logo { height: 54px; filter: brightness(0) invert(1); margin-bottom: 28px; }
.eyebrow { display: inline-flex; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; color: rgba(255,255,255,.76); font-weight: 800; font-size: 14px; }
h1 { font-size: clamp(44px, 8vw, 88px); line-height: .94; margin: 18px 0; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 16px; letter-spacing: 0; }
h3 { margin: 0 0 8px; }
.accent { color: var(--brand); }
.lead { color: rgba(255,255,255,.68); font-size: 20px; line-height: 1.7; max-width: 680px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.btn.outline { background: white; border-color: var(--line); }
.btn.dark-outline { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: white; }
.btn.small { min-height: 38px; padding: 0 14px; }
.btn.danger { background: #fff1f1; border-color: #ffd1d1; color: #9f1d1d; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.actions.compact { margin-top: 0; gap: 8px; }
.process { display: grid; gap: 16px; }
.process-card { border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 24px; background: rgba(0,0,0,.22); display: flex; gap: 16px; }
.bubble { min-width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: var(--text); display: grid; place-items: center; font-weight: 900; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(7,17,17,.04);
}
.muted { color: var(--muted); }
.pill { display: inline-flex; padding: 7px 10px; border-radius: 8px; background: var(--soft); font-size: 13px; font-weight: 800; color: var(--muted); }
.field { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font: inherit; }
textarea.field { min-height: 110px; resize: vertical; }
.form { display: grid; gap: 14px; max-width: 560px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.progress { height: 9px; background: var(--soft); border-radius: 999px; overflow: hidden; }
.progress span { display: block; height: 100%; background: var(--brand); }
.notice { padding: 12px 14px; border-radius: 8px; background: #e9fbf8; border: 1px solid #bdf4ec; font-weight: 700; }
.error { padding: 12px 14px; border-radius: 8px; background: #fff1f1; border: 1px solid #ffd1d1; font-weight: 700; }
.footer { max-width: 1180px; margin: 0 auto; padding: 36px 18px; color: var(--muted); border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 840px) {
  .hero-inner, .grid.three, .grid.two { grid-template-columns: 1fr; }
  .nav { gap: 10px; font-size: 13px; }
}
