/* === Continuity Office — Theme: Modern Signal (V4: single warm field) === */

:root {
  --bg: #1c1511;
  --bg2: #181509;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.74);
  --faint: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #a78bfa;
  --accent2: #67e8f9;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 700px at 10% 10%, rgba(167, 139, 250, 0.13), transparent 60%),
    radial-gradient(900px 700px at 80% 10%, rgba(103, 232, 249, 0.11), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2) 46%, var(--bg));
  line-height: 1.55;
}
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(47, 32, 24, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:0.2px; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(167,139,250,0.28), rgba(103,232,249,0.22));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
}
.nav { display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:flex-end; }
.nav a { color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); text-decoration:none; }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.10); text-decoration:none; }
.btn-small { padding: 10px 12px; border-radius: 13px; font-size: 14px; }
.btn-ghost { background: transparent; border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Inputs */
input, textarea, select {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
}
select { width: auto; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(103,232,249,0.55);
  box-shadow: 0 0 0 4px rgba(103,232,249,0.12);
}

.section { padding: 72px 0; }
.section.alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 840px; margin-bottom: 28px; }
.section-head h2 { margin:0 0 10px; font-size: clamp(22px, 2.3vw, 30px); }
.section-head p { margin:0; color: var(--muted); }

.hero { padding: 78px 0 46px; }
.hero-grid { display:grid; grid-template-columns: 1.25fr 0.75fr; gap: 26px; align-items:start; }
.eyebrow { margin:0 0 10px; color: var(--faint); font-size: 14px; text-transform: uppercase; letter-spacing: 0.28px; }
h1 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 68px); line-height: 0.98; letter-spacing: -1.8px; }
.lede { margin: 0 0 18px; color: var(--muted); font-size: 18px; max-width: 62ch; }
.cta-row { display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 16px; }

.trust-row { display:flex; gap:10px; flex-wrap:wrap; }
.trust-pill {
  border:1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255,255,255,0.04);
}

.hero-card, .offer-card, .mini-card, .form, .contact-card, .faq details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 18px; }
.card-title { margin:0 0 12px; font-size: 16px; color: rgba(103,232,249,0.92); }
.checklist { margin:0; padding-left: 18px; color: var(--muted); }
.checklist li { margin: 10px 0; }
.micro { margin: 12px 0 0; color: var(--faint); font-size: 13px; }

.note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.22);
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.grid-5 { display:grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.mini-card { padding: 14px; box-shadow: none; }
.mini-card h3 { margin:0 0 6px; font-size: 14px; }
.mini-card p { margin:0; color: var(--muted); font-size: 13px; }

.offer-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offer-card { padding: 18px; display:flex; flex-direction:column; gap: 10px; box-shadow: none; }
.offer-card.featured {
  background: linear-gradient(180deg, rgba(167,139,250,0.16), rgba(255,255,255,0.05));
  border-color: rgba(103,232,249,0.32);
}
.offer-kicker { margin:0; color: var(--faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.28px; }
.offer-card h3 { margin:0; font-size: 18px; }
.offer-card p { margin:0; color: var(--muted); }
.bullets { margin: 6px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li { margin: 8px 0; }
.offer-actions { margin-top: auto; padding-top: 10px; }

.faq details { padding: 12px 14px; margin-bottom: 10px; box-shadow: none; }
.faq summary { cursor:pointer; font-weight: 650; }
.faq .faq-body p { margin: 10px 0 0; color: var(--muted); }

.contact-grid { display:grid; grid-template-columns: 1fr 0.9fr; gap: 18px; align-items:start; }
.form { padding: 16px; box-shadow: none; }
label { display:grid; gap:6px; margin-bottom:12px; font-size:13px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--faint); }
.footer-inner { display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .grid-5 { grid-template-columns: 1fr; } }

/* === Revision 6 visual enhancement layer === */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(47, 32, 24, 0.96);
  border: 1px solid var(--line);
  color: var(--text);
  z-index: 999;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 45% 18%, black, transparent 72%);
}

.brand-mark {
  color: transparent;
  position: relative;
}
.brand-mark > span,
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(103,232,249,0.42);
  border-radius: 6px;
  inset: 7px;
}
.brand-mark::before { inset: 5px; opacity: 0.42; transform: rotate(0deg); }
.brand-mark::after { inset: 10px; border-color: rgba(167,139,250,0.44); opacity: 0.75; }

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.35);
  vertical-align: 1px;
}

.hero-punch {
  color: var(--accent2);
  text-shadow: 0 0 36px rgba(103, 232, 249, 0.22);
  white-space: nowrap;
}
.strong-lede {
  color: var(--text);
  font-size: clamp(19px, 2.1vw, 24px);
}

.hero-card,
.offer-card,
.mini-card,
.contact-card,
.faq details,
.bio-card,
.fact {
  backdrop-filter: blur(16px);
}
.offer-card,
.mini-card,
.hero-card,
.contact-card,
.fact {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.offer-card:hover,
.mini-card:hover,
.contact-card:hover,
.fact:hover {
  transform: translateY(-2px);
  border-color: rgba(103,232,249,0.28);
  background: rgba(255,255,255,0.065);
}

.governance-flow-card {
  background:
    radial-gradient(520px 320px at 50% 10%, rgba(103,232,249,0.12), transparent 65%),
    rgba(255,255,255,0.052);
}
.flow-stack {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}
.flow-node {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
}
.flow-node b { color: var(--text); }
.flow-node small {
  grid-column: 2;
  color: var(--faint);
  line-height: 1.35;
}
.flow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(103,232,249,0.08), 0 0 22px rgba(103,232,249,0.26);
}
.tool-node {
  border-color: rgba(167,139,250,0.40);
  background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(103,232,249,0.07));
}
.tool-node .flow-dot { background: var(--accent); box-shadow: 0 0 0 6px rgba(167,139,250,0.10), 0 0 24px rgba(167,139,250,0.28); }
.flow-arrow {
  color: var(--faint);
  text-align: center;
  line-height: 1;
  font-weight: 700;
}
.invariant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.invariant-pills span,
.engagement-capsules span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(103,232,249,0.24);
  background: rgba(103,232,249,0.07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.engagement {
  position: relative;
  overflow: hidden;
}
.engagement::before {
  content: "";
  position: absolute;
  inset: 12px max(20px, calc((100vw - 1120px) / 2)) 12px max(20px, calc((100vw - 1120px) / 2));
  border: 1px solid rgba(103,232,249,0.18);
  border-radius: 28px;
  pointer-events: none;
  background:
    radial-gradient(720px 360px at 18% 8%, rgba(167,139,250,0.12), transparent 64%),
    radial-gradient(580px 320px at 82% 12%, rgba(103,232,249,0.10), transparent 64%);
}
.engagement > .container { position: relative; z-index: 1; }
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: start;
}
.bounded-line {
  margin: -2px 0 14px;
  color: var(--accent2);
  font-weight: 760;
  letter-spacing: -0.02em;
}
.price {
  display: inline-flex;
  align-items: center;
  margin: 4px 0 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103,232,249,0.30);
  color: var(--text);
  background: linear-gradient(135deg, rgba(103,232,249,0.16), rgba(167,139,250,0.10));
  font-weight: 820;
}
.engagement-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.facts {
  display: grid;
  gap: 10px;
}
.fact {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,0.14);
  color: var(--muted);
}
.fact b { color: var(--text); }
.engagement-output { margin-top: 18px; }

.bio-hero { padding: 78px 0 46px; }
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.bio-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.bio-portrait-card {
  overflow: hidden;
  background:
    radial-gradient(360px 220px at 50% 0%, rgba(103,232,249,0.10), transparent 68%),
    rgba(255,255,255,0.052);
}
.bio-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 16px;
}
.bio-photo-caption { margin-bottom: 14px; }
.bio-meta { display: grid; gap: 10px; }
.bio-list { color: var(--muted); padding-left: 20px; }
.bio-list li { margin: 8px 0; }

@media (max-width: 980px) {
  .engagement-grid,
  .bio-grid { grid-template-columns: 1fr; }
  .nav { gap: 12px; }
}
@media (max-width: 760px) {
  .nav a[href="#resources"],
  .nav a[href="/#resources"],
  .nav a[href="#license"],
  .nav a[href="/#license"] { display: none; }
  .hero-punch { white-space: normal; }
  .engagement::before { inset: 8px 12px; }
}

/* === Revision 7 boundary glyph identity layer === */
:root {
  --boundary-glow: rgba(103, 232, 249, 0.28);
  --boundary-ink: rgba(103, 232, 249, 0.92);
  --boundary-faint: rgba(255, 255, 255, 0.048);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

body::after {
  content: "🝚";
  position: fixed;
  right: -10vw;
  top: 9vh;
  z-index: 0;
  pointer-events: none;
  color: var(--boundary-faint);
  font-size: clamp(340px, 52vw, 820px);
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  transform: rotate(-8deg);
  text-shadow: 0 0 90px rgba(103, 232, 249, 0.06);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 46% 42%, rgba(103,232,249,0.18), transparent 58%),
    linear-gradient(135deg, rgba(167,139,250,0.18), rgba(103,232,249,0.12));
  border-color: rgba(103,232,249,0.28);
  color: var(--boundary-ink);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 18px 55px rgba(0,0,0,0.38), 0 0 28px rgba(103,232,249,0.10);
}
.brand-mark > span { display: none; }
.brand-mark::before {
  content: "🝚";
  position: static;
  display: block;
  border: 0;
  inset: auto;
  color: var(--boundary-ink);
  font-size: 19px;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  transform: translateY(-0.5px);
  opacity: 0.98;
}
.brand-mark::after { content: none; }

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "🝚";
  position: absolute;
  right: max(18px, calc((100vw - 1120px) / 2 - 20px));
  top: 18px;
  z-index: 0;
  pointer-events: none;
  color: rgba(103,232,249,0.055);
  font-size: clamp(220px, 31vw, 460px);
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  transform: rotate(-7deg);
  text-shadow: 0 0 80px rgba(167,139,250,0.08);
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
}
.hero-copy { max-width: 770px; }

h1 {
  max-width: 790px;
}
.hero-punch {
  display: inline-block;
  color: var(--accent2);
  text-shadow: 0 0 42px rgba(103, 232, 249, 0.28);
}

.btn.primary,
.cta-row > .btn:first-child {
  border-color: rgba(103,232,249,0.38);
  background:
    linear-gradient(135deg, rgba(103,232,249,0.18), rgba(167,139,250,0.14)),
    rgba(255,255,255,0.045);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22), 0 0 28px rgba(103,232,249,0.055);
}

.governance-flow-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}
.governance-flow-card::before {
  content: "🝚";
  position: absolute;
  right: -24px;
  bottom: -48px;
  font-size: 190px;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  transform: rotate(-10deg);
}
.governance-flow-card > * { position: relative; z-index: 1; }
.flow-stack { gap: 8px; }
.flow-node {
  grid-template-columns: 22px 1fr;
  grid-template-areas:
    "dot title"
    ". desc";
  gap: 2px 11px;
  padding: 12px 13px;
}
.flow-dot { grid-area: dot; align-self: center; }
.flow-node b {
  grid-area: title;
  display: block;
  line-height: 1.22;
}
.flow-node small {
  grid-area: desc;
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
}
.flow-arrow {
  font-size: 16px;
  opacity: 0.72;
}

.note strong:first-child {
  color: var(--text);
}
.note.boundary-note,
.note:has(strong:first-child) {
  position: relative;
}

.boundary-label {
  color: var(--accent2);
  font-weight: 820;
}

.section.alt {
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,0.026), transparent),
    radial-gradient(760px 320px at 92% 0%, rgba(103,232,249,0.035), transparent 70%);
}

.engagement::after {
  content: "🝚";
  position: absolute;
  right: max(12px, calc((100vw - 1120px) / 2));
  bottom: -104px;
  z-index: 0;
  pointer-events: none;
  color: rgba(103,232,249,0.050);
  font-size: clamp(250px, 38vw, 540px);
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  transform: rotate(6deg);
}
.engagement .section-head,
.engagement-grid,
.engagement-output { position: relative; z-index: 1; }

.contact-card,
.offer-card,
.mini-card,
.hero-card,
.fact,
.bio-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.036));
}
.offer-card.featured {
  background:
    radial-gradient(480px 260px at 65% 0%, rgba(103,232,249,0.11), transparent 70%),
    linear-gradient(180deg, rgba(167,139,250,0.14), rgba(255,255,255,0.045));
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero::before { right: -60px; top: 80px; opacity: 0.78; }
  body::after { right: -34vw; font-size: 560px; }
}

@media (max-width: 560px) {
  body::after { display: none; }
  .hero::before { right: -95px; top: 96px; font-size: 300px; }
  .governance-flow-card { padding: 18px; }
}


/* === Revision 8 engagement container adaptation fix === */
.engagement {
  overflow: visible;
}
.engagement::before {
  content: none;
}
.engagement::after {
  opacity: 0.7;
  bottom: -82px;
}
.engagement-grid {
  align-items: stretch;
}
.engagement-grid > div:first-child {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 28px;
  background:
    radial-gradient(560px 220px at 10% 0%, rgba(103,232,249,0.06), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.facts {
  align-self: stretch;
}
.engagement-output {
  margin-top: 16px;
}
.engagement-output .offer-card {
  min-height: 100%;
}
@media (max-width: 980px) {
  .engagement-grid > div:first-child {
    padding: 22px;
  }
}
@media (max-width: 560px) {
  .engagement-grid > div:first-child {
    padding: 18px;
  }
}


/* === Revision 9 stewardship alignment pass === */
.contact.section {
  position: relative;
  overflow: hidden;
}
.contact.section .contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact.section .contact-grid > div:first-child {
  max-width: 720px;
}
.contact.section .contact-grid > div:first-child > h2 {
  margin-top: 0;
  margin-bottom: 22px;
}
.contact.section .contact-grid > div:first-child > p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.48;
}
.contact-cards {
  display: grid;
  gap: 12px;
}
.contact-card {
  padding: 20px 22px;
  min-height: auto;
  box-shadow: none;
}
.contact-card h3 {
  margin: 0 0 10px;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.03em;
}
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.48;
}
.contact.section .hero-card {
  align-self: start;
  justify-self: end;
  width: min(100%, 560px);
  padding: clamp(24px, 3vw, 34px);
}
.contact.section .hero-card .card-title {
  font-size: clamp(20px, 1.65vw, 24px);
  margin-bottom: 20px;
}
.contact.section .hero-card p {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}
.contact.section .hero-card .cta-row {
  margin-top: 26px;
}
@media (max-width: 980px) {
  .contact.section .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact.section .contact-grid > div:first-child,
  .contact.section .hero-card {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}
@media (max-width: 560px) {
  .contact-card {
    padding: 18px;
  }
  .contact.section .hero-card {
    padding: 20px;
  }
}
