:root {
  --ink: #06143a;
  --muted: #536178;
  --line: #dbe4ef;
  --paper: #ffffff;
  --soft: #f3f8fb;
  --night: #061238;
  --night-2: #020716;
  --teal: #10c7a8;
  --blue: #2f7df6;
  --violet: #7d43e8;
  --amber: #ffb000;
  --green: #13b77a;
  --shadow: 0 20px 60px rgba(6, 20, 58, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: 12px; background: #fff; padding: 10px; z-index: 50; }
.skip:focus { left: 12px; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; font-size: 1.1rem; }
.brand img { width: 38px; height: 38px; }
.links { display: flex; align-items: center; gap: 22px; font-size: .95rem; color: var(--muted); }
.links a { text-decoration: none; }
.links a:hover { color: var(--ink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.button.secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.hero {
  background: radial-gradient(circle at 75% 22%, rgba(47,125,246,.24), transparent 34%), linear-gradient(135deg, var(--night), var(--night-2));
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 40px;
  padding: 54px 0 44px;
}
.eyebrow {
  color: #78f1de;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 5.9rem); max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.22rem; }
.gradient-text { background: linear-gradient(90deg, #fff, #27d7c0, #4a8bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(1.1rem, 2vw, 1.38rem); color: rgba(255,255,255,.82); max-width: 620px; margin: 22px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 28px; box-shadow: 0 28px 80px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.14); }
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-card {
  min-height: 190px;
  padding: 30px 24px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.trust-card:first-child { border-left: 0; }
.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.icon.violet { background: linear-gradient(135deg, var(--violet), #9b5cf5); }
.icon.blue { background: linear-gradient(135deg, var(--blue), #2fd0ff); }
.icon.amber { background: linear-gradient(135deg, var(--amber), #ff8a00); }
.icon.green { background: linear-gradient(135deg, var(--green), var(--teal)); }
.trust-card p, .card p, .page-lead, .text-muted { color: var(--muted); }
.section { padding: 82px 0; }
.section.alt { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(6,20,58,.06);
}
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step { position: relative; }
.step-number { color: var(--teal); font-weight: 900; margin-bottom: 12px; }
.chart-card { padding: 0; overflow: hidden; }
.use-cases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.use-case { background: #fff; padding: 24px 18px; min-height: 132px; }
.code-box {
  background: linear-gradient(135deg, var(--night), var(--night-2));
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  font-family: "SFMono-Regular", Consolas, monospace;
  border: 1px solid rgba(255,255,255,.14);
}
.code-box .ok { color: #38f2a9; }
.contact-form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: .9rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(16, 199, 168, .18);
  border-color: var(--teal);
}
.form-note { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}
.calendly-frame {
  min-width: 320px;
  height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.cta-band {
  background: linear-gradient(135deg, var(--night), var(--night-2));
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band p { color: rgba(255,255,255,.76); margin: 10px 0 0; max-width: 660px; }
.page-hero { padding: 70px 0 52px; background: linear-gradient(135deg, var(--night), var(--night-2)); color: #fff; }
.page-hero .page-lead { color: rgba(255,255,255,.78); max-width: 760px; font-size: 1.18rem; }
.breadcrumbs { margin-bottom: 20px; color: rgba(255,255,255,.7); font-size: .9rem; }
.breadcrumbs a { color: #fff; text-decoration: none; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 12px;
  background: #fff;
}
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { color: var(--muted); }
.footer { background: var(--night-2); color: rgba(255,255,255,.76); padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer a { color: #fff; text-decoration: none; display: block; margin: 8px 0; }
.schema-note { font-size: .92rem; color: var(--muted); }

@media (max-width: 920px) {
  .links { display: none; }
  .hero-inner, .grid-2 { grid-template-columns: 1fr; }
  .trust-row, .flow, .use-cases { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .hero-inner { min-height: auto; }
  .cta-band { display: block; }
  .cta-band .button { margin-top: 18px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-inner { height: 64px; }
  .trust-row, .flow, .use-cases, .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 3rem; }
  .hero-actions .button { width: 100%; }
}
