/* ─────────────────────────────────────────
   KONTORE — Component Styles
   css/components.css
   (ecosystem · commodities · features · process
    dashboard · testimonials · pricing · cta · footer)
───────────────────────────────────────── */

/* ══ VALUE PROP ═════════════════════════ */
.value-prop {
  padding: 80px var(--sec-pad-h) 80px;
  background: var(--ink);
  border-bottom: 1px solid rgba(181,134,42,.1);
  text-align: center;
}
.vp-inner { max-width: 1060px; margin: 0 auto; }
.vp-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--parch); margin-bottom: 22px;
}
.vp-headline em { font-style: italic; color: var(--gold); }
.vp-sub {
  font-size: 17px; line-height: 1.68;
  color: rgba(243,237,227,.72);
  max-width: 580px; margin: 0 auto 64px;
}
.vp-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(181,134,42,.1);
  border: 1px solid rgba(181,134,42,.1);
  text-align: left;
}
.vp-card {
  background: rgba(243,237,227,.03);
  padding: 34px 28px;
  transition: background var(--ease-std);
  position: relative; overflow: hidden;
}
.vp-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease-slow);
}
.vp-card:hover { background: rgba(181,134,42,.07); }
.vp-card:hover::after { transform: scaleX(1); }
.vpc-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 400;
  color: var(--parch); margin-bottom: 10px; line-height: 1.2;
}
.vpc-desc { font-size: 13px; line-height: 1.72; color: rgba(243,237,227,.72); }

/* ══ MANIFESTO ══════════════════════════ */
.manifesto-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 900px;
}
.m-index { padding-top: 8px; }
.m-big {
  font-family: var(--font-display);
  font-size: 100px; font-weight: 300;
  color: var(--parch3); line-height: 1;
  letter-spacing: -.03em;
}
.m-tag {
  font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-top: 8px;
}
.m-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -.015em; margin-bottom: 28px;
}
.m-title em { font-style: italic; color: var(--gold); }
.m-body {
  font-size: 15.5px; line-height: 1.78;
  color: var(--muted); margin-bottom: 18px;
}
.m-body:last-child { margin-bottom: 0; }
.m-body strong { color: var(--ink); font-weight: 600; }

/* ══ ECOSYSTEM ══════════════════════════ */
.eco-header {
  margin-bottom: 56px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
}
.eco-header-left  { flex: 1; }
.eco-header-right { max-width: 380px; }

.eco-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--b-gold-dk);
  border: 1px solid var(--b-gold-dk);
}
.eco-card {
  background: var(--ink); padding: 38px 34px;
  transition: background var(--ease-std);
  position: relative; overflow: hidden;
}
.eco-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease-slow);
}
.eco-card:hover { background: rgba(181,134,42,.05); }
.eco-card:hover::after { transform: scaleX(1); }
.eco-icon  { margin-bottom: 18px; display: block; color: var(--gold); }
.eco-icon svg { width: 28px; height: 28px; }
.eco-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 400; color: var(--parch);
  margin-bottom: 10px; line-height: 1.2;
}
.eco-desc { font-size: 13.5px; line-height: 1.76; color: rgba(243,237,227,.68); }

/* ══ COMMODITIES ═════════════════════════ */
.comm-eyebrow-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 44px;
}
.comm-eyebrow-line { flex: 1; height: 1px; background: rgba(181,134,42,.18); }

.comm-row {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 1px;
  background: rgba(181,134,42,.1);
  border: 1px solid rgba(181,134,42,.1);
}
.comm-cell {
  background: var(--ink); padding: 28px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--ease-std);
  position: relative; overflow: hidden;
}
.comm-cell::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease-slow);
}
.comm-cell:hover { background: rgba(181,134,42,.06); }
.comm-cell:hover::after { transform: scaleX(1); }
.comm-em { font-size: 44px; font-family: var(--font-display); color: var(--gold); line-height: 1; }
.comm-nm { font-family: var(--font-display); font-size: 17px; color: var(--parch); }
.comm-ds { font-size: 10.5px; color: rgba(243,237,227,.3); letter-spacing: .05em; line-height: 1.6; }

/* ══ FEATURES ═══════════════════════════ */
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--b-ink); border: 1px solid var(--b-ink);
}
.feat-card {
  background: var(--parch); padding: 38px 34px;
  transition: background .2s;
}
.feat-card:hover { background: var(--parch2); }
.feat-num {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--gold); letter-spacing: .1em;
  margin-bottom: 20px; display: block;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 400; color: var(--ink);
  margin-bottom: 12px; line-height: 1.2;
}
.feat-desc { font-size: 13.5px; line-height: 1.76; color: var(--muted); }

/* ══ PROCESS ════════════════════════════ */
.proc-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  margin-top: 60px; position: relative;
}
.proc-line-bg {
  position: absolute; top: 27px; left: 9%; right: 9%;
  height: 1px; background: var(--b-ink);
}
.proc-line-gold {
  position: absolute; top: 27px; left: 9%;
  width: 0; height: 1px; background: var(--gold);
  animation: lineGrow 3.2s ease forwards .6s;
}
.proc-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 14px; position: relative; z-index: 1;
}
.proc-node {
  width: 54px; height: 54px;
  border: 1px solid var(--b-ink); background: var(--parch2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-family: var(--font-display); font-size: 18px;
  font-weight: 300; color: var(--muted);
  transition: all .28s;
}
.proc-step:hover .proc-node {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold); transform: scale(1.08);
}
.proc-step-t {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 9px;
}
.proc-step-d { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

/* ══ DASHBOARD MOCKUP ═══════════════════ */
.dash-frame {
  border: 1px solid var(--b-ink); background: var(--ink);
  overflow: hidden; box-shadow: 0 40px 80px rgba(12,11,9,.18);
}
.dash-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; background: rgba(12,11,9,.8);
  border-bottom: 1px solid rgba(181,134,42,.09);
}
.dot   { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: var(--rust); }
.dot-g { background: var(--green-ok); }
.dot-b { background: var(--blue-ok); }
.url-bar {
  flex: 1; background: rgba(243,237,227,.04);
  border: 1px solid rgba(181,134,42,.09);
  padding: 4px 12px; margin: 0 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(243,237,227,.28); letter-spacing: .05em;
}
.dash-body {
  display: grid; grid-template-columns: 188px 1fr; min-height: 460px;
}
.dash-sidebar { border-right: 1px solid rgba(181,134,42,.07); padding: 22px 0; }
.dash-brand-area {
  padding: 0 18px 16px;
  border-bottom: 1px solid rgba(181,134,42,.07);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--gold); letter-spacing: .15em;
}
.nav-item {
  padding: 9px 18px; font-size: 10.5px;
  color: rgba(243,237,227,.28);
  letter-spacing: .07em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: all .15s; font-weight: 500;
}
.nav-item:hover, .nav-item.active {
  color: var(--parch); background: rgba(181,134,42,.06);
}
.nav-item.active { border-left: 2px solid var(--gold); }
.nav-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .45; flex-shrink: 0; }
.nav-item.active .nav-dot { background: var(--gold); opacity: 1; }
.dash-content { padding: 24px; }
.dash-greeting-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-greeting { font-family: var(--font-display); font-size: 20px; font-weight: 300; color: var(--parch); }
.dash-greeting span { font-style: italic; color: var(--gold); }
.dash-date { font-family: var(--font-mono); font-size: 9.5px; color: rgba(243,237,227,.28); letter-spacing: .1em; }
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.kpi-card { background: rgba(243,237,227,.04); border: 1px solid rgba(181,134,42,.1); padding: 14px 16px; }
.kpi-l { font-size: 8.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500; }
.kpi-v { font-family: var(--font-display); font-size: 24px; font-weight: 300; color: var(--parch); line-height: 1; }
.kpi-d { font-size: 9.5px; color: #72C48A; margin-top: 4px; }
.table-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.table-lbl { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(243,237,227,.42); font-weight: 500; }
.ops-table { width: 100%; border-collapse: collapse; font-size: 10.5px; }
.ops-table th { text-align: left; padding: 6px 8px; border-bottom: 1px solid rgba(181,134,42,.09); color: rgba(243,237,227,.22); font-weight: 400; letter-spacing: .09em; text-transform: uppercase; font-size: 8.5px; }
.ops-table td { padding: 8px 8px; color: rgba(243,237,227,.65); border-bottom: 1px solid rgba(181,134,42,.04); }
.ops-table tr:hover td { background: rgba(181,134,42,.03); }
.ref   { color: var(--gold2) !important; font-family: var(--font-mono); font-size: 9px; }
.badge { display: inline-block; padding: 2px 7px; font-size: 7.5px; letter-spacing: .09em; text-transform: uppercase; font-weight: 600; }
.b-a   { background: rgba(75,124,90,.2); color: #72C48A; }
.b-p   { background: rgba(181,134,42,.14); color: var(--gold2); }
.b-s   { background: rgba(75,97,129,.2); color: #82ADDA; }

/* ══ TESTIMONIALS ═══════════════════════ */
.test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 60px;
  background: rgba(181,134,42,.07);
  border: 1px solid rgba(181,134,42,.07);
}
.test-card { background: var(--ink); padding: 38px 34px; transition: background .22s; }
.test-card:hover { background: rgba(181,134,42,.04); }
.test-quote {
  font-family: var(--font-display);
  font-size: 18.5px; font-weight: 300; font-style: italic;
  color: var(--parch); line-height: 1.62; margin-bottom: 28px;
}
.test-quote::before {
  content: '\201C'; font-size: 42px; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 6px; opacity: .55;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av {
  width: 38px; height: 38px;
  background: rgba(181,134,42,.14);
  border: 1px solid rgba(181,134,42,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.test-name { font-size: 12.5px; font-weight: 700; color: var(--parch); letter-spacing: .04em; margin-bottom: 3px; }
.test-role { font-size: 10.5px; color: rgba(243,237,227,.32); letter-spacing: .03em; }

/* ══ PRICING ════════════════════════════ */
.price-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 60px;
  background: var(--b-ink); border: 1px solid var(--b-ink);
}
.price-card { background: var(--parch); padding: 46px 38px; position: relative; }
.price-card.featured { background: var(--ink); }
.price-badge {
  position: absolute; top: -1px; left: 38px;
  background: var(--gold); color: var(--ink);
  font-size: 8.5px; padding: 4px 12px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.price-tier { font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 600; }
.price-card.featured .price-tier { color: var(--gold); }
.price-num { font-family: var(--font-display); font-size: 58px; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-num { color: var(--parch); }
.price-period { font-size: 11.5px; color: var(--muted); margin-bottom: 32px; }
.price-card.featured .price-period { color: rgba(243,237,227,.38); }
.price-divider { height: 1px; background: var(--b-ink); margin-bottom: 24px; }
.price-card.featured .price-divider { background: rgba(181,134,42,.14); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.price-feats li { font-size: 13.5px; color: var(--muted); display: flex; gap: 9px; line-height: 1.5; }
.price-card.featured .price-feats li { color: rgba(243,237,227,.5); }
.price-feats li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 11px; margin-top: 2px; }
.price-btn {
  width: 100%; padding: 14px; background: transparent;
  border: 1px solid var(--b-ink); color: var(--ink);
  font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 700; font-family: var(--font-body);
  transition: all .2s;
}
.price-btn:hover { background: var(--ink); color: var(--parch); border-color: var(--ink); }
.price-card.featured .price-btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.price-card.featured .price-btn:hover { background: var(--gold2); border-color: var(--gold2); }

/* ══ WHITEPAPER ═════════════════════════ */
.wp-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.wp-summary-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.wp-summary-label::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.wp-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--b-ink); border: 1px solid var(--b-ink); margin-bottom: 32px; }
.wp-kpi { background: var(--parch); padding: 24px 20px; }
.wp-kpi-n { font-family: var(--font-display); font-size: 38px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.wp-kpi-l { font-size: 11px; color: var(--muted); line-height: 1.5; }
.wp-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wp-bullets li { font-size: 14.5px; color: var(--muted); display: flex; gap: 10px; line-height: 1.6; }
.wp-bullets li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.wp-disclaimer { font-size: 11.5px; color: var(--muted); font-style: italic; line-height: 1.6; border-left: 2px solid var(--b-gold); padding-left: 14px; }

/* Form side */
.wp-form-wrap {
  background: var(--ink); padding: 44px 40px;
  border: 1px solid rgba(181,134,42,.14);
}
.wp-form-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300; color: var(--parch);
  margin-bottom: 8px; line-height: 1.15;
}
.wp-form-title em { font-style: italic; color: var(--gold); }
.wp-form-sub { font-size: 13.5px; color: rgba(243,237,227,.42); line-height: 1.65; margin-bottom: 32px; }
.wp-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(243,237,227,.4); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(243,237,227,.06);
  border: 1px solid rgba(181,134,42,.2);
  color: var(--parch); font-family: var(--font-body);
  font-size: 13.5px; padding: 11px 14px;
  outline: none; transition: border-color .2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(243,237,227,.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select { appearance: none; -webkit-appearance: none; }
.form-field select option { background: var(--ink); }
.form-field textarea { resize: vertical; min-height: 80px; }
.wp-form-note { font-size: 11px; color: rgba(243,237,227,.28); line-height: 1.6; font-style: italic; }
.wp-form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
#wp-success {
  display: none; text-align: center; padding: 32px 0;
}
#wp-success .success-icon { font-size: 36px; margin-bottom: 12px; }
#wp-success p { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--parch); font-style: italic; }
#wp-success small { display: block; margin-top: 8px; font-size: 12px; color: rgba(243,237,227,.4); }

/* ══ CTA FINAL ══════════════════════════ */
.cta-sec {
  padding: 150px var(--sec-pad-h);
  background: var(--ink); text-align: center;
  position: relative; overflow: hidden;
}
.cta-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 190px);
  font-weight: 300; color: rgba(181,134,42,.038);
  white-space: nowrap; pointer-events: none;
  letter-spacing: .12em; user-select: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eye { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 300; color: var(--parch);
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -.015em;
}
.cta-h em { font-style: italic; color: var(--gold); }
.cta-desc { font-size: 15.5px; color: rgba(243,237,227,.42); max-width: 470px; margin: 0 auto 44px; line-height: 1.76; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ══ FOOTER ═════════════════════════════ */
footer {
  border-top: 1px solid var(--b-ink);
  padding: 44px var(--sec-pad-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
}
.ft-brand { display: flex; flex-direction: column; gap: 4px; }
.ft-logo  { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: .2em; }
.ft-tag   { font-family: var(--font-mono); font-size: 8.5px; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; }
.ft-location { font-size: 10px; color: var(--muted); letter-spacing: .06em; }
.ft-links { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; }
.ft-links a { font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 500; transition: color .2s; }
.ft-links a:hover { color: var(--ink); }
.ft-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.ft-email { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: .06em; transition: opacity .2s; }
.ft-email:hover { opacity: .7; }
.ft-copy { font-size: 10px; color: var(--muted); text-align: right; letter-spacing: .05em; line-height: 1.65; }

/* ══ PLATFORM GALLERY ══════════════════ */
.plat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b-ink);
  border: 1px solid var(--b-ink);
  margin-top: 56px;
}
.plat-entry {
  background: var(--parch);
  padding: 40px 36px;
  display: flex;
  gap: 22px;
}
.plat-num   { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: .12em; flex-shrink: 0; padding-top: 3px; }
.plat-entry-body { flex: 1; }
.plat-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.25; margin-bottom: 12px; }
.plat-body  { font-size: 14px; line-height: 1.75; color: rgba(12,11,9,.58); }

/* Screenshot images in platform gallery */
.plat-img-wrap { margin-bottom: 20px; border-radius: 6px; overflow: hidden; border: 1px solid rgba(181,134,42,.15); }
.plat-img { width: 100%; display: block; }

/* Reserved for when screenshots are added */
.plat-screen {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(12,11,9,.14), 0 2px 8px rgba(12,11,9,.08);
  border: 1px solid var(--b-ink);
}
.plat-screen img { display: block; width: 100%; height: auto; }
.bz {
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(12,11,9,.32);
  border-radius: 3px;
}

/* ══ DEMO MODAL ════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(12,11,9,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px 60px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal-box {
  position: relative;
  background: var(--parch);
  border: 1px solid var(--b-ink);
  border-radius: 4px;
  padding: 52px 48px;
  max-width: 700px;
  width: 100%;
  margin: auto;
}

.modal-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: none;
  font-size: 22px; line-height: 1;
  color: var(--ink); opacity: .38;
  padding: 6px 8px;
  cursor: pointer;
  transition: opacity .18s;
}
.modal-close:hover { opacity: 1; }

.modal-header    { margin-bottom: 36px; }
.modal-title     { font-family: var(--font-display); font-size: clamp(26px,3vw,36px); font-weight: 600; line-height: 1.15; }
.modal-sub       { font-size: 14.5px; color: rgba(12,11,9,.52); margin-top: 10px; line-height: 1.6; }

.demo-form .form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.demo-form .form-field { margin-bottom: 20px; }
.demo-form label       { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-bottom: 7px; color: rgba(12,11,9,.6); }
.demo-form input,
.demo-form select,
.demo-form textarea    { width: 100%; background: transparent; border: 1px solid var(--b-ink); border-radius: 2px; padding: 11px 14px; font-family: var(--font-body); font-size: 14.5px; color: var(--ink); transition: border-color .18s; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus { outline: none; border-color: var(--gold); }
.demo-form textarea    { resize: vertical; min-height: 80px; }
.demo-form select      { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%230C0B09'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

#demo-success        { text-align: center; padding: 48px 0 20px; }
#demo-success .success-icon { font-size: 40px; color: var(--gold); margin-bottom: 22px; }
#demo-success p      { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 10px; }
#demo-success small  { font-size: 13.5px; color: rgba(12,11,9,.5); line-height: 1.6; }
