*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #080F1E;
  --navy-2:     #0D1829;

  --white:      #FAFAFA;
  --off-white:  #F4F3F0;

  --ink:        #0B1426;
  --ink-2:      #3D4B63;
  --ink-3:      #8A95A8;

  --cloud:      #EEF1F7;
  --cloud-2:    #8895B0;

  --purple:     #6B4DE6;
  --purple-2:   #8B6FF0;
  --purple-pale:#EEE9FD;

  --border-l:   rgba(0,0,0,0.08);
  --border-d:   rgba(255,255,255,0.08);

  --display:    'Fraunces', Georgia, serif;
  --body:       'DM Sans', system-ui, sans-serif;
  --mono:       'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 820px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ── NAV ──────────────────────────────────────────── */
nav#nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--border-d);
}
.nav-logo img { height: 24px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link {
  color: var(--cloud);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.nav-link:hover { color: var(--white); text-decoration: none; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn:hover { text-decoration: none; }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: var(--purple-2); }

/* ── HEADER ──────────────────────────────────────── */
.page-header {
  background: var(--off-white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border-l);
}
.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.page-header .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
  margin-top: 20px;
  max-width: 640px;
}
.page-header .region-note {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 14px;
  background: var(--purple-pale);
  border: 1px solid rgba(107,77,230,0.18);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 400;
}
.page-header .region-note strong { color: var(--purple); font-weight: 600; }

/* ── CONTENT ──────────────────────────────────────── */
main { padding: 64px 0 96px; }
main p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 14px;
}
main p a { font-weight: 400; }
main strong { color: var(--ink); font-weight: 600; }

.section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-l);
}
.section:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
  scroll-margin-top: 80px;
}
.section h2 .num {
  font-family: var(--body);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 8px;
}
.section h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 28px 0 10px;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--cloud);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 5px;
  border: 1px solid var(--border-l);
}

/* ── CAPABILITY GRID ──────────────────────────────── */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.cap-card {
  padding: 20px 20px;
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 14px;
}
.cap-card .cap-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.cap-card h3 { margin: 0 0 5px; font-size: 15px; font-weight: 600; color: var(--ink); }
.cap-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); font-weight: 300; }

/* ── EXAMPLE PROMPTS ──────────────────────────────── */
.prompt-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.prompt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
}
.prompt-list li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--purple);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── STEPS / WORKFLOW ─────────────────────────────── */
ol.steps { margin: 16px 0 0; padding: 0; list-style: none; counter-reset: step; }
ol.steps > li {
  position: relative;
  padding: 0 0 20px 44px;
  counter-increment: step;
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.7;
}
ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--purple-pale);
  color: var(--purple);
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol.steps > li:last-child { padding-bottom: 0; }
ol.steps strong { color: var(--ink); font-weight: 600; }

/* ── PILL / DETAIL LISTS ──────────────────────────── */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.pill-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 999px;
  padding: 7px 14px;
}

.usecase-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.usecase-list li {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 12px;
}
.usecase-list li strong { display: block; color: var(--ink); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.usecase-list li span { font-size: 15px; color: var(--ink-2); font-weight: 300; line-height: 1.7; }

/* ── CALLOUT / CROSS-LINK ─────────────────────────── */
.callout {
  margin: 20px 0 0;
  padding: 18px 22px;
  background: var(--purple-pale);
  border: 1px solid rgba(107,77,230,0.18);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.7;
}
.callout strong { color: var(--purple); font-weight: 600; }

.crosslink {
  display: block;
  margin-top: 22px;
  padding: 24px 26px;
  background: var(--navy);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.15s;
}
.crosslink:hover { text-decoration: none; transform: translateY(-2px); }
.crosslink .cl-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-2);
  margin-bottom: 8px;
}
.crosslink .cl-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.crosslink .cl-title svg { transition: transform 0.15s; }
.crosslink:hover .cl-title svg { transform: translateX(4px); }
.crosslink .cl-body { font-size: 15px; color: var(--cloud-2); font-weight: 300; line-height: 1.7; margin: 0; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--cloud-2);
  padding: 40px 40px 48px;
  text-align: center;
}
.footer-logo img { height: 22px; width: auto; opacity: 0.7; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 24px 0 20px;
  flex-wrap: wrap;
}
.footer-link {
  color: var(--cloud-2);
  font-size: 13px;
  text-decoration: none;
}
.footer-link:hover { color: var(--white); text-decoration: none; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

@media (max-width: 720px) {
  .container { padding: 0 24px; }
  nav#nav { padding: 14px 20px; }
  .nav-right { gap: 18px; }
  .nav-link { display: none; } nav#nav .nav-right .btn { font-size: 12px; padding: 8px 12px; gap: 5px; }
  .page-header { padding: 56px 0 44px; }
  main { padding: 44px 0 72px; }
  .section { margin-top: 40px; padding-top: 32px; }
  .section h2 { font-size: 26px; }
  .cap-grid { grid-template-columns: 1fr; }
}
.hcta{display:inline-flex;flex-direction:column;align-items:center;line-height:1.15;text-align:center}.hcta-main{font-size:15px;font-weight:600;white-space:nowrap}.hcta-sub{font-size:11px;font-weight:400;opacity:.85;text-transform:none;letter-spacing:0;white-space:nowrap}@media (max-width:900px){.nav-right .nav-link{display:none}nav#nav .hcta-main{font-size:13px}nav#nav .hcta-sub{font-size:10px}}
nav#nav .btn{flex-wrap:nowrap}nav#nav .btn>svg{flex:0 0 auto;align-self:center}
