/* ============================================================
   Gyde Solutions — design system v2
   Brand: navy #00173b + gold #f0b020 (extracted from logo)
   Gold-forward premium. Type: Sora · Instrument Sans · IBM Plex Mono
   ============================================================ */

:root {
  --navy: #00173b;
  --navy-2: #0a2149;
  --navy-3: #12305f;
  --navy-line: #223a63;
  --gold: #f0b020;
  --gold-deep: #cf9612;
  --gold-hi: #ffd35e;
  --gold-soft: #fdf3dc;
  --gold-line: #f0d99a;
  --ink: #14213d;
  --ink-2: #4a5670;
  --ink-3: #7a869e;
  --paper: #ffffff;
  --mist: #f7f9fc;
  --cream: #fdfaf3;
  --line: #e6eaf1;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-display: "Sora", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --grad-gold: linear-gradient(135deg, #ffd35e 0%, #f0b020 55%, #d99818 100%);
  --grad-navy: linear-gradient(160deg, #0a2149 0%, #00173b 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body { font-family: var(--font-body); font-size: 16.5px; line-height: 1.65; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.1vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 600; line-height: 1.32; }
p { color: var(--ink-2); }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }

.eyebrow { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--gold-hi); }
.dark .eyebrow::before, .page-hero .eyebrow::before, .hero .eyebrow::before { background: var(--gold-hi); }
.lede { font-size: 1.14rem; max-width: 46rem; }
.gold { color: var(--gold-deep); }
.dark .gold, .hero .gold, .page-hero .gold { color: var(--gold-hi); }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { color: inherit; }
.brand img { height: 38px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); letter-spacing: -0.01em; }
.brand-text small { font-family: var(--font-mono); font-weight: 500; font-size: 0.58rem; letter-spacing: 0.22em; color: var(--ink-3); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-toggle { display: none; }

.btn { display: inline-block; font-weight: 600; font-size: 0.95rem; padding: 12px 24px; border-radius: 999px; border: 1.5px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease; cursor: pointer; font-family: var(--font-body); }
.btn-primary { background: var(--grad-gold); color: var(--navy); box-shadow: 0 8px 20px -8px rgba(240,176,32,0.6); }
.btn-primary:hover { color: var(--navy); transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(240,176,32,0.75); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--ink); }
.dark .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost, .cta-band .btn-ghost { border-color: var(--navy-line); color: #dbe4f5; background: transparent; }
.dark .btn-ghost:hover, .hero .btn-ghost:hover, .page-hero .btn-ghost:hover, .cta-band .btn-ghost:hover { border-color: var(--gold-hi); color: #fff; }

.section { padding: 92px 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--mist); }
.section.cream { background: var(--cream); }
.section.dark { background: var(--grad-navy); color: #e8ecf7; }
.section.dark p { color: #c2cde6; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #f4f7fd; }
.section-head { max-width: 46rem; margin-bottom: 50px; }

.hero { position: relative; overflow: hidden; background: var(--grad-navy); color: #eef2fb; padding: 92px 0 84px; }
.hero::before { content: ""; position: absolute; top: -30%; right: -12%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(240,176,32,0.16) 0%, rgba(240,176,32,0) 68%); pointer-events: none; }
.hero h1 { color: #fff; }
.hero p { color: #b3c0dd; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero .lede { margin: 22px 0 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.registry { border: 1px solid var(--navy-line); border-radius: var(--radius); background: rgba(10,33,73,0.6); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.registry-head { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8ea4d4; padding: 14px 20px; border-bottom: 1px solid var(--navy-line); display: flex; justify-content: space-between; background: rgba(0,0,0,0.15); }
a.registry-row { display: block; color: inherit; }
.registry-row { padding: 16px 20px; border-bottom: 1px solid var(--navy-line); transition: background 0.15s ease; }
.registry-row:last-child { border-bottom: none; }
.registry-row:hover { background: rgba(240,176,32,0.08); }
.registry-meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: #8ea4d4; text-transform: uppercase; margin-bottom: 5px; }
.status { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-hi); }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-hi); box-shadow: 0 0 8px var(--gold); }
.registry-name { font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: #fff; }
.registry-desc { font-size: 0.88rem; color: #a9b7d6; margin-top: 2px; }
.card .registry-meta { color: var(--ink-3); }
.card .status { color: var(--gold-deep); }
.card .status::before { background: #1e9e6a; box-shadow: none; }

.facts { border-bottom: 1px solid var(--line); background: var(--cream); }
.facts-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 26px 20px; border-left: 1px solid var(--line); }
.fact:first-child { border-left: none; padding-left: 0; }
.fact strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.35rem; font-weight: 700; margin-bottom: 3px; }
.fact span { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.03em; color: var(--ink-2); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--paper); position: relative; transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; }
a.card { color: inherit; display: block; }
a.card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(20,33,61,0.35); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.95rem; }
.card .more { display: inline-block; margin-top: 15px; font-weight: 600; font-size: 0.9rem; color: var(--gold-deep); }
.dark .card { background: rgba(10,33,73,0.55); border-color: var(--navy-line); }
.card-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px; background: var(--grad-gold); display: grid; place-items: center; color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }

/* product card with a screenshot thumbnail slot at the top */
.pcard { padding: 0; overflow: hidden; }
.pcard .pcard-thumb {
  height: 168px; background: var(--grad-navy); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pcard .pcard-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 26%, rgba(240,176,32,0.22), transparent 62%); }
.pcard .pcard-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; position: relative; z-index: 1; }
.pcard .pcard-thumb .thumb-note { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: #7f92bd; text-transform: uppercase; }
.pcard .pcard-badge { position: absolute; top: 14px; left: 16px; z-index: 2; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--grad-gold); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.pcard .pcard-in { padding: 24px 26px 26px; }
.pcard .pcard-in h3 { margin-bottom: 8px; }
.pcard .pcard-in p { font-size: 0.94rem; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.feature { padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature h3 { font-size: 1rem; margin-bottom: 6px; display: flex; align-items: center; gap: 9px; }
.feature h3::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); flex: none; }
.feature p { font-size: 0.93rem; }

.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--gold); line-height: 1; }
.step h3 { font-size: 1.05rem; margin-bottom: 5px; }
.step p { font-size: 0.95rem; }

.mockup { border-radius: var(--radius); border: 1px solid var(--navy-line); background: var(--grad-navy); overflow: hidden; box-shadow: 0 30px 70px -34px rgba(0,0,0,0.5); }
.mockup-bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: rgba(0,0,0,0.25); border-bottom: 1px solid var(--navy-line); }
.mockup-bar i { width: 11px; height: 11px; border-radius: 50%; background: #33456e; display: block; }
.mockup-bar i:nth-child(1) { background: #e0663f; }
.mockup-bar i:nth-child(2) { background: var(--gold); }
.mockup-bar i:nth-child(3) { background: #2fae70; }
.mockup-bar span { margin-left: 12px; font-family: var(--font-mono); font-size: 0.72rem; color: #8ea4d4; letter-spacing: 0.04em; }
.mockup-body { padding: 26px; min-height: 300px; display: grid; gap: 14px; align-content: start; }
.mockup-note { text-align: center; font-family: var(--font-mono); font-size: 0.72rem; color: #7f92bd; letter-spacing: 0.06em; padding: 10px; border-top: 1px dashed var(--navy-line); }
/* real screenshot inside a mockup frame */
.mockup-shot { display: block; width: 100%; height: auto; }
.mockup.has-shot { background: #fff; }
.mockup.has-shot .mockup-body { padding: 0; min-height: 0; display: block; }

/* framed screenshot (standalone, not in browser chrome) */
.shot-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 50px -30px rgba(20,33,61,0.35); background: #fff; }
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-cap { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--ink-3); margin-top: 12px; }
/* two-up gallery */
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .shot-grid { grid-template-columns: 1fr; } }
.sk { background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.09), rgba(255,255,255,0.05)); border-radius: 7px; }
.sk-row { height: 42px; display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 0 4px; }
.sk-av { width: 34px; height: 34px; border-radius: 8px; background: rgba(240,176,32,0.25); }
.sk-lines { display: grid; gap: 6px; }
.sk-l1 { height: 9px; width: 60%; }
.sk-l2 { height: 8px; width: 38%; opacity: 0.6; }
.sk-tag { width: 54px; height: 22px; border-radius: 999px; background: rgba(240,176,32,0.22); }
.sk-chart { height: 120px; display: flex; align-items: flex-end; gap: 10px; padding-top: 10px; }
.sk-chart b { flex: 1; background: var(--grad-gold); border-radius: 5px 5px 0 0; opacity: 0.85; display: block; }

.stack { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.stack-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.stack-col h3 { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--gold-line); }
.stack-col ul { list-style: none; }
.stack-col li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-2); }
.stack-col li:last-child { border-bottom: none; }
/* keep dark variant available if used elsewhere */
.dark .stack-col { background: rgba(10,33,73,0.5); border-color: var(--navy-line); }
.dark .stack-col h3 { color: var(--gold-hi); border-bottom-color: var(--navy-line); }
.dark .stack-col li { color: #cdd8ee; border-bottom-color: var(--navy-line); }

.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-display); font-size: 1rem; color: var(--ink); padding: 20px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-weight: 500; font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 20px; max-width: 44rem; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-family: var(--font-mono); font-size: 0.78rem; padding: 8px 15px; border: 1px solid var(--gold-line); border-radius: 999px; color: var(--ink-2); background: var(--gold-soft); }

/* broad industry tiles (services reach) */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind-tile {
  display: flex; align-items: center; gap: 11px; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
a.ind-tile:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(20,33,61,0.35); color: var(--ink); }
.ind-tile::before { content: ""; width: 9px; height: 9px; border-radius: 2px; background: var(--grad-gold); flex: none; }
.ind-more {
  grid-column: 1 / -1; margin-top: 8px; padding: 20px 22px; border-radius: var(--radius);
  background: var(--grad-navy); color: #eef2fb; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap; border: 1px solid var(--navy-line);
}
.ind-more p { color: #cdd8ee; margin: 0; max-width: 40rem; }
.ind-more b { color: var(--gold-hi); }
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ind-grid { grid-template-columns: 1fr; } }

.cta-band { background: var(--grad-navy); color: #fff; border-top: 3px solid var(--gold); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd8ee; }
.cta-band .wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.cta-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

.post { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; display: block; color: inherit; }
.post:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 20px 40px -24px rgba(20,33,61,0.35); color: inherit; }
.post-cover { height: 150px; background: var(--grad-navy); position: relative; overflow: hidden; }
.post-cover::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(240,176,32,0.28), transparent 60%); }
.post-cover span { position: absolute; bottom: 14px; left: 18px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-hi); z-index: 1; }
.post-body { padding: 22px; }
.post-body h3 { margin-bottom: 8px; }
.post-body p { font-size: 0.92rem; }
.post-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-3); margin-top: 14px; }

.article { max-width: 46rem; }
.article p { margin-bottom: 18px; }
.article h2 { margin: 34px 0 12px; }
.article h3 { margin: 24px 0 8px; }
.article ul { margin: 0 0 18px 20px; }
.article li { margin-bottom: 8px; color: var(--ink-2); }

.site-footer { background: #030d24; color: #c2cde6; padding: 64px 0 36px; font-size: 0.92rem; border-top: 1px solid var(--navy-line); }
.site-footer p { color: #c2cde6; }
.footer-tag { color: #eef2fb !important; font-weight: 500; margin-bottom: 14px; }
.footer-addr { font-style: normal; color: #94a3c4; font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-email a { color: var(--gold-hi); font-weight: 600; }
.footer-email a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand-row img { height: 40px; }
.footer-brand-row b { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem; }
.site-footer h4 { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-hi); margin-bottom: 15px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #dce4f4; }
.site-footer a:hover { color: var(--gold-hi); }
.footer-legal { border-top: 1px solid var(--navy-line); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.82rem; color: #7f92bd; }
.footer-legal a { color: #9aa8cc; }

.page-hero { background: var(--grad-navy); color: #eef2fb; padding: 78px 0 62px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -40%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(240,176,32,0.14), transparent 68%); }
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: #b3c0dd; position: relative; }
.page-hero .lede { margin-top: 18px; }
.page-hero .hero-ctas { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.product-stats { display: flex; gap: 38px; flex-wrap: wrap; margin-top: 38px; position: relative; }
.product-stats div strong { display: block; font-size: 1.6rem; color: var(--gold-hi); font-weight: 700; font-family: var(--font-display); }
.product-stats div span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8ea4d4; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.88rem; display: block; margin-bottom: 6px; color: var(--ink); }
input, textarea, select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; color: var(--ink); background: #fff; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-grid, .cta-band .wrap { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .grid-3, .grid-4, .stack { grid-template-columns: 1fr 1fr; }
  .facts-row { grid-template-columns: 1fr 1fr; }
  .fact { border-left: none; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .stack, .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; padding: 18px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font: inherit; cursor: pointer; }
  .section { padding: 66px 0; }
}

/* contact form status */
.form-status { margin-top: 4px; font-size: 0.92rem; font-weight: 500; }
.form-status:empty { display: none; }
.form-status.ok { color: #1e9e6a; }
.form-status.err { color: #c0392b; }
