/* ============================================================
   Darksteel Technologies — marketing site
   LIGHT design system, matched to the Forge app's default light
   theme. Brand: blue #0c6cb4 + orange #f09600, shield motif.
   One stylesheet, no dependencies.
   ============================================================ */

:root {
  /* surfaces — light (mirrors Forge tokens.css light defaults) */
  --bg:        #f6f8fa;   /* page background */
  --bg-2:      #eef2f6;   /* alternating light-gray section */
  --bg-3:      #e9eef4;   /* deeper light panel */
  --surface:   #ffffff;   /* cards */
  --surface-2: #ffffff;
  --glass:     rgba(255,255,255,.78);
  --border:    #e2e8f0;
  --border-2:  #cbd5e1;

  /* ink */
  --ink:       #0f172a;
  --ink-soft:  #475569;
  --ink-faint: #64748b;

  /* brand — sampled from the Darksteel logo */
  --blue:        #0c6cb4;
  --blue-ink:    #0a5a98;   /* darker for text/hover on white */
  --blue-bright: #2e9be6;
  --blue-wash:   #e6f0fa;
  --orange:      #f09600;
  --orange-ink:  #c77b00;
  --orange-wash: #fdf0da;

  --grad: linear-gradient(120deg, #0c6cb4 0%, #1f83cf 55%, #2e9be6 100%);
  --grad-warm: linear-gradient(120deg, #e08a00, #f09600);

  --ok: #1f8a52;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'SFMono-Regular', ui-monospace, 'Cascadia Code', 'Roboto Mono', Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 4px 12px rgba(15,23,42,.05);
  --shadow: 0 2px 6px rgba(15,23,42,.06), 0 18px 40px -14px rgba(15,23,42,.14);
  --shadow-lg: 0 30px 60px -22px rgba(15,23,42,.22);
  --shadow-glow: 0 14px 34px -12px rgba(12,108,180,.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background: var(--bg); line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--blue); }

h1,h2,h3,h4 { line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.025em; color: var(--ink); font-weight: 750; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.95rem); font-weight: 800; letter-spacing: -.04em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 780; letter-spacing: -.035em; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--sm { padding: 64px 0; }
.center { text-align: center; }
.mw { max-width: 720px; }
.center .mw { margin: 0 auto; }

/* mono eyebrow */
.kicker {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .02em; font-weight: 500;
  color: var(--blue); text-transform: uppercase; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--blue); opacity: .5; }
.kicker.warm { color: var(--orange-ink); }
.kicker.warm::before { background: var(--orange-ink); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.warm-text { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* background flourishes (subtle on light) */
.grid-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 25%, transparent 72%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; z-index: 0; pointer-events: none; }
.orb.blue  { background: radial-gradient(circle, rgba(46,155,230,.4), transparent 70%); }
.orb.orange{ background: radial-gradient(circle, rgba(240,150,0,.22), transparent 70%); }
.section > .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .98rem;
  padding: 14px 24px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform .16s, box-shadow .16s, background .16s, border-color .16s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { color: #fff; box-shadow: 0 18px 40px -12px rgba(12,108,180,.5); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--bg); color: var(--blue-ink); border-color: var(--blue); }
.btn-lg { padding: 16px 30px; font-size: 1.03rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--glass); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; margin-left: 4px; }
.brand:hover { text-decoration: none; }
.brand img { height: 44px; width: auto; max-width: none; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--ink-soft); font-weight: 550; font-size: .95rem; padding: 10px 13px; border-radius: 9px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li.current > a { color: var(--ink); background: var(--bg-2); }
.caret { width: 13px; height: 13px; opacity: .6; transition: transform .18s; }
.dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 350px; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: .18s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); padding: 12px 13px; border-radius: 12px; }
.dropdown-menu a:hover { background: var(--bg-2); text-decoration: none; }
.dropdown-menu .mi { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--blue-wash); color: var(--blue); }
.dropdown-menu .mi svg { width: 18px; height: 18px; }
.dropdown-menu a > span:last-child { display: flex; flex-direction: column; gap: 3px; }   /* stack title + desc */
.dropdown-menu .mt { display: block; font-weight: 650; font-size: .93rem; color: var(--ink); line-height: 1.25; }
.dropdown-menu .md { display: block; font-size: .82rem; color: var(--ink-faint); line-height: 1.45; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1000px) {
  .nav-links, .nav-cta .desk { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 80px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 14px; max-height: 84vh; overflow-y: auto; box-shadow: var(--shadow);
  }
  .site-header.open .nav-links > li > a { padding: 13px 14px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; background: var(--bg-2); min-width: 0; margin: 4px 0 6px 10px; }
  .dropdown-menu .md { display: none; }
  .site-header.open .nav-links .mobile-only { display: block; margin-top: 8px; }
}

/* mobile-only CTA lives inside the hamburger menu; hidden in the desktop inline nav */
.nav-links .mobile-only { display: none; }

@media (max-width: 600px) {
  .nav { height: 64px; gap: 10px; }
  .brand img { height: 36px; }
  .nav-cta .btn-primary { display: none; }          /* CTA is in the menu + hero on phones */
  .site-header.open .nav-links { top: 64px; }
  .container { padding: 0 18px; }
  .section { padding: 58px 0; }
  .section--sm { padding: 40px 0; }
  .cta { padding: 46px 22px; border-radius: 20px; }
  .hero-actions .btn, .cta .actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  background: radial-gradient(1100px 560px at 72% -20%, rgba(46,155,230,.16), transparent 60%),
              linear-gradient(180deg, #ffffff, var(--bg) 70%); }
.hero .orb.blue { width: 560px; height: 560px; top: -220px; right: -120px; opacity: .4; }
.hero .orb.orange { width: 340px; height: 340px; bottom: -200px; left: -110px; opacity: .3; }
.hero-inner { position: relative; z-index: 2; padding: clamp(64px, 10vw, 120px) 0 clamp(70px, 11vw, 128px); max-width: 900px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 500;
  padding: 7px 15px 7px 9px; border-radius: 999px; border: 1px solid var(--border-2);
  background: #fff; color: var(--ink-soft); margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(31,138,82,.16); }
.pill b { color: var(--ink); font-weight: 650; }
.hero h1 { margin-bottom: 22px; }
.hero .sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 640px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-row { margin-top: 46px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: var(--ink-faint); font-size: .82rem; }
.trust-row .logos { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.trust-row .logos img { height: 30px; width: auto; filter: grayscale(1); opacity: .6; }

/* interior page hero */
.hero-page { position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  background: radial-gradient(860px 400px at 82% -30%, rgba(46,155,230,.14), transparent 60%),
              linear-gradient(180deg, #ffffff, var(--bg) 80%); }
.hero-page .inner { position: relative; z-index: 2; padding: clamp(52px,7vw,84px) 0 clamp(44px,6vw,64px); max-width: 820px; }
.crumb { font-family: var(--mono); font-size: .8rem; color: var(--ink-faint); margin-bottom: 18px; }
.crumb a { color: var(--ink-soft); } .crumb span { color: var(--blue); }

/* ---------- Grids / cards ---------- */
.grid, .g2, .g3, .g4 { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2,1fr); }
.g3 { grid-template-columns: repeat(3,1fr); }
.g4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 940px){ .g3,.g4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .g2,.g3,.g4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; transition: .2s ease; height: 100%;
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; }
.card .arrow-link { font-weight: 650; font-size: .9rem; color: var(--blue-ink); display: inline-flex; align-items: center; gap: 7px; }
.card .arrow-link svg { width: 15px; height: 15px; transition: transform .16s; }
.card:hover .arrow-link svg { transform: translateX(4px); }
a.card:hover { text-decoration: none; }

.icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--blue-wash); border: 1px solid #d3e6f6; color: var(--blue);
}
.icon svg { width: 26px; height: 26px; }
.icon.warm { background: var(--orange-wash); border-color: #f6e2c0; color: var(--orange-ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 680px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 26px 12px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.stat .n { font-size: clamp(2rem,3.4vw,2.7rem); font-weight: 800; letter-spacing: -.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split.rev .media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 34px; } .split.rev .media { order: 0; } }
.media { position: relative; }
.media img { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; box-shadow: var(--shadow); }
.media .badge { position: absolute; bottom: -18px; left: -18px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.media .badge .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); color: #fff; }
.media .badge .ic svg { width: 20px; height: 20px; }
.media .badge b { color: var(--ink); font-size: .95rem; } .media .badge span { color: var(--ink-faint); font-size: .8rem; display: block; }
@media (max-width: 520px){ .media .badge { display: none; } }

/* mock UI panel (replaces stock photos in split sections) */
.mock { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; }
.mock::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 160px at 80% -10%, rgba(46,155,230,.1), transparent 70%); pointer-events: none; }
.mock-top { display: flex; align-items: center; gap: 13px; padding: 20px 22px; border-bottom: 1px solid var(--border); position: relative; }
.mock-top .sh { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; flex: none; }
.mock-top .sh svg { width: 22px; height: 22px; }
.mock-top b { color: var(--ink); font-size: .96rem; display: block; }
.mock-top small { color: var(--ink-faint); font-size: .8rem; }
.mock-top .grade { margin-left: auto; font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-body { padding: 20px 22px; display: grid; gap: 13px; position: relative; }
.mrow { display: flex; align-items: center; gap: 11px; font-size: .92rem; color: var(--ink-soft); }
.mrow .d { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.mrow .d.ok { background: var(--ok); } .mrow .d.hi { background: var(--orange); } .mrow .d.cr { background: #d3352e; } .mrow .d.lo { background: var(--blue); }
.mrow b { color: var(--ink); margin-left: auto; font-weight: 650; }
.mrow .tag { margin-left: auto; font-size: .74rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: #e8f5ee; color: #17663f; }
.mbar-wrap { margin-top: 4px; }
.mbar-wrap .lbl { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink-faint); margin-bottom: 7px; }
.mbar { height: 8px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.mbar span { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.mchips { display: flex; flex-wrap: wrap; gap: 8px; }
.mchips span { font-size: .78rem; font-weight: 600; color: var(--blue-ink); background: var(--blue-wash); border: 1px solid #d3e6f6; border-radius: 8px; padding: 5px 10px; }
.mock-foot { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--ink-soft); background: var(--bg); position: relative; }
.mock-foot svg { width: 16px; height: 16px; color: var(--blue); }

/* value list */
.vlist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.vlist li { display: flex; gap: 14px; align-items: flex-start; }
.vlist .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--blue-wash); color: var(--blue); margin-top: 2px; }
.vlist .tick svg { width: 15px; height: 15px; }
.vlist strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 650; }
.vlist span.t { color: var(--ink-soft); font-size: .96rem; }

/* prose (detail pages) */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); font-size: 1.06rem; }
.prose h3 { margin-top: 8px; color: var(--ink); }
.prose ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.prose ul li { display: flex; gap: 13px; color: var(--ink-soft); }
.prose ul li .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center;
  background: var(--blue-wash); color: var(--blue); margin-top: 3px; }
.prose ul li .tick svg { width: 14px; height: 14px; }
.prose ul li b { color: var(--ink); font-weight: 650; }

/* ---------- Logo cloud ---------- */
.cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; }
.cloud img { height: 44px; width: auto; filter: grayscale(1); opacity: .55; transition: .2s; }
.cloud img:hover { filter: none; opacity: 1; }

/* ---------- Testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
  display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-sm); }
.tcard .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; font-size: .9rem; }
.tcard .q { color: var(--ink); font-size: 1rem; line-height: 1.65; margin-bottom: 22px; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--border); padding-top: 16px; }
.tcard .who img { width: 46px; height: 46px; border-radius: 10px; object-fit: contain; background: #fff; padding: 4px; border: 1px solid var(--border); }
.tcard .who .nm { font-weight: 650; color: var(--ink); font-size: .93rem; }
.tcard .who .rl { color: var(--ink-faint); font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; transition: .2s; box-shadow: var(--shadow-sm); }
.faq details[open] { border-color: var(--border-2); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 650; color: var(--ink); font-size: 1.03rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); font-weight: 400; transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { color: var(--ink-soft); padding: 0 0 20px; font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; border-radius: 26px; padding: 66px 40px; text-align: center;
  background: radial-gradient(700px 320px at 50% -10%, rgba(46,155,230,.18), transparent 65%), #fff;
  border: 1px solid var(--border-2); box-shadow: var(--shadow); }
.cta .orb.blue { width: 420px; height: 420px; top: -200px; left: 50%; transform: translateX(-50%); opacity: .5; }
.cta h2 { position: relative; z-index: 1; }
.cta .lead { position: relative; z-index: 1; margin: 0 auto 28px; max-width: 560px; }
.cta .actions { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; gap: 34px; } }
.irow { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.irow .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-wash); color: var(--blue); border: 1px solid #d3e6f6; }
.irow .ic svg { width: 20px; height: 20px; }
.irow .k { font-weight: 650; color: var(--ink); font-size: .95rem; }
.irow .v { color: var(--ink-soft); font-size: .96rem; } .irow .v a { color: var(--ink-soft); }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border-2); border-radius: 11px; font: inherit;
  font-size: .97rem; color: var(--ink); background: var(--bg); transition: .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(12,108,180,.14); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 6px; }
.form-status { margin-top: 14px; padding: 12px 15px; border-radius: 11px; font-size: .93rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e8f5ee; color: #17663f; border: 1px solid #b7e0c8; }
.form-status.err { background: #fde8e7; color: #a12820; border: 1px solid #f3bdb9; }

/* chips (areas) */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border-2);
  border-radius: 999px; padding: 11px 20px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.chip svg { width: 16px; height: 16px; color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 42px; width: auto; max-width: none; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-soft); font-size: .93rem; max-width: 300px; }
.footer-col h4 { color: var(--ink); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--mono); font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--ink-soft); font-size: .93rem; } .footer-col a:hover { color: var(--blue-ink); }
.footer-contact p { color: var(--ink-soft); font-size: .93rem; margin-bottom: 10px; } .footer-contact a { color: var(--ink-soft); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--bg-2);
  color: var(--ink-soft); border: 1px solid var(--border); }
.socials a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 52px; padding-top: 24px; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: var(--ink-faint); }
.footer-bottom .fb-badge { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom .fb-badge b { color: var(--ink-soft); }
.footer-bottom .fb-badge svg { width: 15px; height: 15px; color: var(--blue); }
.footer-bottom .fb-badge a { color: var(--ink-soft); } .footer-bottom .fb-badge a:hover { color: var(--blue-ink); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

.anchor { scroll-margin-top: 100px; }
