/* ============================================================
   BrawnForge — atomic utilities + css-modules-style components
   Fingerprint: f87d44811fad67252c37d2ac2e6a19dc8faed67fbb79bd9dbc85acc3c32b538e
   ============================================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
table { border-collapse: collapse; border-spacing: 0; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
:root {
  --accent: #e8842c;
  --accent-strong: #f59743;
  --accent-deep: #b9621a;
  --accent-glow: rgba(232, 132, 44, 0.42);
  --ink: #0d1117;
  --ink-soft: #1a1d23;
  --ink-line: #2a2f37;
  --paper: #ffffff;
  --paper-soft: #f5f6f8;
  --paper-line: #e6e8ee;
  --on-dark: #f0f0f0;
  --on-dark-muted: #a8adb6;
  --on-light: #1a1d23;
  --on-light-muted: #5a6172;
  --container-max: 1200px;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --tr: 0.25s ease;
}
body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, label, li {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 3.2vw, 2.125rem); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.5rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.65; font-weight: 400; }
small { font-size: 0.85rem; line-height: 1.5; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--paper);
  color: var(--on-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
}
section { flex: 1 1 auto; }
.container {
  width: min(92%, var(--container-max));
  margin-inline: auto;
}
section.light { background: var(--paper); color: var(--on-light); }
section.dark  { background: var(--ink);   color: var(--on-dark); }
section.light p { color: var(--on-light-muted); }
section.dark  p { color: var(--on-dark-muted); }
.d-flex     { display: flex; }
.d-grid     { display: grid; }
.d-block    { display: block; }
.d-inline-b { display: inline-block; }
.d-none     { display: none; }
.fd-col     { flex-direction: column; }
.fd-row     { flex-direction: row; }
.fw-wrap    { flex-wrap: wrap; }
.jc-between { justify-content: space-between; }
.jc-center  { justify-content: center; }
.jc-start   { justify-content: flex-start; }
.jc-end     { justify-content: flex-end; }
.ai-center  { align-items: center; }
.ai-start   { align-items: flex-start; }
.ai-stretch { align-items: stretch; }
.ta-center  { text-align: center; }
.ta-left    { text-align: left; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12{ margin-bottom: 3rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.py-1 { padding-block: 0.25rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-8 { padding-block: 2rem; }
.py-12{ padding-block: 3rem; }
.px-2 { padding-inline: 0.5rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-6 { padding-inline: 1.5rem; }
.text-accent  { color: var(--accent); }
.text-soft    { color: var(--on-dark-muted); }
.text-muted   { color: var(--on-light-muted); }
.fs-sm  { font-size: 0.85rem; }
.fs-md  { font-size: 1rem; }
.fs-lg  { font-size: 1.125rem; }
.fs-xl  { font-size: 1.375rem; }
.fs-2xl { font-size: 1.75rem; }
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.tt-up  { text-transform: uppercase; letter-spacing: 0.14em; }
.w-full { width: 100%; }
.mx-auto { margin-inline: auto; }
.max-w-prose { max-width: 62ch; }
.max-w-3xl   { max-width: 760px; }
.max-w-4xl   { max-width: 960px; }
.max-w-5xl   { max-width: 1080px; }
.bg-paper-soft { background: var(--paper-soft); }
.bg-ink-soft   { background: var(--ink-soft); }
.border-line   { border: 1px solid var(--paper-line); }
.border-ink    { border: 1px solid var(--ink-line); }
.rounded   { border-radius: var(--r); }
.rounded-sm{ border-radius: var(--r-sm); }
.rounded-lg{ border-radius: var(--r-lg); }
.banner-top {
  background: var(--accent);
  color: var(--ink);
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.banner-top a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.Header_root_a3x {
  --hdr-bg: rgba(13, 17, 23, 0.92);
  --hdr-line: rgba(255, 255, 255, 0.06);
  background: var(--hdr-bg);
  color: var(--on-dark);
  border-bottom: 1px solid var(--hdr-line);
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.Header_inner_b4y {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
  gap: 1rem;
}
.Header_brand_c5z {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.Header_brand_c5z .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 800;
}
.Header_nav_d6a ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}
.Header_nav_d6a a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-dark);
  border-radius: 6px;
  transition: color var(--tr), background var(--tr);
}
.Header_nav_d6a a:hover,
.Header_nav_d6a a.Active_a93 {
  color: var(--accent);
  background: rgba(232, 132, 44, 0.08);
}
.Header_cta_e7b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: transform var(--tr), box-shadow var(--tr);
}
.Header_cta_e7b:hover {
  background: var(--accent) !important;
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: translateY(-1px);
}
.Header_nav_d6a .mega-parent { position: relative; }
.Header_nav_d6a .mega-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  min-width: 540px;
  padding: 1.25rem;
  background: #15191f;
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr), transform var(--tr), visibility 0s linear var(--tr);
}
.Header_nav_d6a .mega-parent:hover > .mega-dropdown,
.Header_nav_d6a .mega-parent:focus-within > .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--tr), transform var(--tr);
}
.mega-dropdown a {
  display: block;
  padding: 0.55rem 0.5rem !important;
  border-radius: 6px;
}
.mega-dropdown .mega-col-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--on-dark-muted);
  padding: 0 0.5rem 0.4rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--ink-line);
}
[data-mm-header] {
  --mm-bg: #15191f;
  --mm-text: var(--on-dark);
  --mm-primary: var(--accent);
  --mm-overlay-bg: rgba(0, 0, 0, 0.55);
}
.get-started {
  position: relative;
  background-color: var(--ink);
  background-image:
    linear-gradient(135deg, rgba(13,17,23,0.78) 0%, rgba(13,17,23,0.45) 55%, rgba(13,17,23,0.85) 100%),
    url('/static/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax-effect */
  color: var(--on-dark);
  overflow: hidden;
}
.Hero_root_h7g {
  --hero-padd: clamp(3.5rem, 8vw, 6rem);
  padding-block: var(--hero-padd);
}
.Hero_eyebrow_i8c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(232, 132, 44, 0.14);
  border: 1px solid rgba(232, 132, 44, 0.35);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.Hero_eyebrow_i8c::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}
.Hero_title_j9d {
  max-width: 22ch;
  margin-bottom: 1rem;
  color: #ffffff;
}
.Hero_title_j9d span {
  color: var(--accent);
}
.Hero_lead_k0e {
  max-width: 60ch;
  margin-bottom: 1.5rem;
  color: var(--on-dark-muted);
  font-size: 1.0625rem;
}
.Hero_actions_l1f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.Hero_meta_m2g {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}
.Hero_meta_m2g span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.Hero_meta_m2g span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.hero-giant-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.giant-stat { text-align: left; }
.giant-stat-number {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.giant-stat-label {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--on-dark-muted);
  font-weight: 600;
}
.Btn_a {
  --btn-bg: var(--accent);
  --btn-color: var(--ink);
  --btn-padd: 0.85rem 1.4rem;
  --btn-radius: 999px;
  --btn-shadow: 0 4px 18px var(--accent-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-padd);
  background: var(--btn-bg);
  color: var(--btn-color);
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--btn-shadow);
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
}
.Btn_a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.Btn_a--ghost {
  --btn-bg: transparent;
  --btn-color: var(--on-dark);
  --btn-shadow: none;
  border-color: rgba(255, 255, 255, 0.25);
}
.Btn_a--ghost:hover {
  --btn-bg: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}
.Btn_a--solid-light {
  --btn-bg: var(--ink);
  --btn-color: #ffffff;
  --btn-shadow: 0 4px 18px rgba(13, 17, 23, 0.2);
}
.Btn_a--block {
  width: 100%;
}
.Title_root_n3h {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}
.Title_root_n3h .eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(232, 132, 44, 0.14);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}
.Title_root_n3h h2 { margin-bottom: 0.75rem; }
.Title_root_n3h p  { margin-inline: auto; max-width: 60ch; }
.Sec_pad_o4i {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.learn-more .About_grid_p5j {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}
.About_image_q6k {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  box-shadow: 0 18px 50px rgba(232, 132, 44, 0.10);
}
.About_image_q6k img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.About_image_q6k::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 64%;
  height: 22%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-radius: var(--r);
  z-index: -1;
}
.About_body_r7l p { margin-bottom: 1rem; }
.About_list_s8m {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.About_list_s8m li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--on-light);
}
.About_list_s8m li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 132, 44, 0.12);
}
.About_list_s8m li::after {
  content: "";
  position: absolute;
  left: 7px; top: 0.6rem;
  width: 8px; height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.cards-uniform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.Feat_card_u0o {
  --card-bg: #15191f;
  --card-line: var(--ink-line);
  --card-pad: 1.5rem;
  --card-radius: var(--r-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-line);
  padding: var(--card-pad);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(232, 132, 44, 0.06);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.Feat_card_u0o:hover {
  box-shadow: 0 16px 50px var(--accent-glow);
  transform: translateY(-4px);
  border-color: rgba(232, 132, 44, 0.5);
}
.Feat_idx_v1p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.Feat_title_w2q {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--on-dark);
}
.Feat_desc_x3r {
  color: var(--on-dark-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.Feat_meta_y4s {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: var(--on-dark-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.Feat_meta_y4s::before {
  content: ""; width: 24px; height: 1px; background: var(--accent);
}
.Faq_list_a6u {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
}
.Faq_item_b7v {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.Faq_item_b7v.is-open {
  border-color: var(--accent);
  box-shadow: 0 12px 36px var(--accent-glow);
}
.Faq_btn_c8w {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.Faq_btn_c8w::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--tr);
  flex-shrink: 0;
}
.Faq_item_b7v.is-open .Faq_btn_c8w::after {
  transform: rotate(-135deg);
}
.Faq_body_d9x {
  max-height: 0;
  overflow: hidden;
  padding-inline: 1.25rem;
  transition: max-height 0.35s ease, padding-block 0.35s ease;
}
.Faq_item_b7v.is-open .Faq_body_d9x {
  max-height: 600px;
  padding-bottom: 1.1rem;
}
.Faq_body_d9x p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--on-light-muted);
}
.Note_root_e0y {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.75rem 1.75rem;
  background: linear-gradient(135deg, #1a1d23, #15191f);
  border: 1px solid var(--ink-line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r);
  color: var(--on-dark);
}
.Note_root_e0y h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.Note_root_e0y p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-dark-muted);
}
.connect .Connect_grid_f1z {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: start;
}
.Connect_left_g2a h2 { margin-bottom: 0.85rem; }
.Connect_left_g2a p  { margin-bottom: 1rem; color: var(--on-dark-muted); max-width: 56ch; }
.Connect_info_h3b {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-line);
}
.Connect_info_h3b dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.Connect_info_h3b dd { color: var(--on-dark); font-size: 1rem; }
.Connect_info_h3b dd a { color: var(--on-dark); border-bottom: 1px dotted rgba(255,255,255,0.25); }
.Connect_info_h3b dd a:hover { color: var(--accent); border-color: var(--accent); }
.SideForm_root_i4c {
  background: #15191f;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 100px;
}
.SideForm_root_i4c h3 {
  color: var(--on-dark);
  margin-bottom: 0.35rem;
}
.SideForm_root_i4c .form-lead {
  font-size: 0.92rem;
  color: var(--on-dark-muted);
  margin-bottom: 1.25rem;
}
.Form_field_j5d {
  display: block;
  margin-bottom: 0.9rem;
}
.Form_field_j5d > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-dark-muted);
  margin-bottom: 0.4rem;
}
.Form_input_k6e,
.Form_textarea_l7f {
  width: 100%;
  background: #0d1117;
  border: 1px solid var(--ink-line);
  color: var(--on-dark);
  padding: 0.75rem 0.9rem;
  border-radius: var(--r-sm);
  font-size: 0.96rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.Form_textarea_l7f {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.Form_input_k6e:focus,
.Form_textarea_l7f:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 132, 44, 0.18);
}
.Form_check_m8g {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  line-height: 1.5;
}
.Form_check_m8g input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  width: 16px; height: 16px;
}
.Form_check_m8g a {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
}
.Form_alert_n9h {
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid;
}
.Form_alert_n9h.is-error   { background: rgba(220, 38, 38, 0.10); border-color: rgba(220, 38, 38, 0.45); color: #fda4af; }
.Form_alert_n9h.is-success { background: rgba(34, 197, 94, 0.10); border-color: rgba(34, 197, 94, 0.45); color: #86efac; }
.reveal-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-block.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.PageHero_root_o0i {
  background: linear-gradient(135deg, #0d1117 0%, #15191f 100%);
  color: var(--on-dark);
  padding-block: clamp(2.75rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ink-line);
}
.PageHero_root_o0i .eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(232, 132, 44, 0.14);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}
.PageHero_root_o0i h1 { color: #ffffff; max-width: 22ch; }
.PageHero_root_o0i p  { color: var(--on-dark-muted); max-width: 60ch; margin-top: 0.75rem; }
.Legal_root_p1j {
  background: var(--paper);
  color: var(--on-light);
}
.Legal_body_q2k {
  max-width: 760px;
  margin: 0 auto;
}
.Legal_body_q2k h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 1.375rem;
}
.Legal_body_q2k h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.Legal_body_q2k p {
  margin-bottom: 0.85rem;
  color: var(--on-light-muted);
}
.Legal_body_q2k ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}
.Legal_body_q2k ul li {
  margin-bottom: 0.4rem;
  color: var(--on-light-muted);
  line-height: 1.6;
}
.Legal_body_q2k a {
  color: var(--accent-deep);
  border-bottom: 1px dotted var(--accent-deep);
}
.Legal_body_q2k .Legal_meta_r3l {
  padding: 1rem 1.25rem;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  font-size: 0.9rem;
  color: var(--on-light-muted);
  margin-bottom: 2rem;
}
.Footer_root_s4m {
  background: #08090c;
  color: var(--on-dark);
  border-top: 1px solid var(--ink-line);
  margin-top: auto;
}
.Footer_grid_t5n {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-block: 2.5rem 1.5rem;
}
.Footer_brand_u6o {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.Footer_brand_u6o .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 800;
}
.Footer_about_v7p {
  font-size: 0.92rem;
  color: var(--on-dark-muted);
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 1rem;
}
.Footer_col_w8q h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.Footer_col_w8q ul {
  display: grid;
  gap: 0.5rem;
}
.Footer_col_w8q a {
  font-size: 0.92rem;
  color: var(--on-dark-muted);
  transition: color var(--tr);
}
.Footer_col_w8q a:hover { color: var(--accent); }
.Footer_legal_x9r {
  padding-block: 1.25rem 1.5rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}
.Footer_disclaimer_y0s {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}
.Footer_disclaimer_y0s a {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
}
.Footer_corp_z1t {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
  line-height: 1.55;
}
.Footer_corp_z1t strong {
  color: var(--on-dark);
  font-weight: 700;
}
@media (max-width: 980px) {
  .learn-more .About_grid_p5j { grid-template-columns: 1fr; gap: 2rem; }
  .About_image_q6k { aspect-ratio: 16 / 11; max-width: 520px; margin-inline: auto; }
  .connect .Connect_grid_f1z { grid-template-columns: 1fr; gap: 2rem; }
  .SideForm_root_i4c { position: static; }
  .Footer_grid_t5n { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-giant-stats { gap: 1rem; }
  .giant-stat-number { font-size: 2rem; }
  .Footer_grid_t5n { grid-template-columns: 1fr; gap: 1.5rem; }
  .Footer_legal_x9r { flex-direction: column; align-items: flex-start; }
  .get-started { background-attachment: scroll; }
.accordionable .section__title { cursor: pointer; }
  .accordionable .section__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .accordionable.active .section__content {
    max-height: 2000px;
  }
.Header_nav_d6a .mega-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 0.5rem 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }
  .mega-dropdown .mega-col-title { border-bottom: 0; padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-block, .Btn_a, .Feat_card_u0o, .Faq_body_d9x {
    transition: none !important;
  }
  .get-started { background-attachment: scroll; }
}
