/* ============================================================
   INVURIA — Computer Systems Design & Related Services
   Dark teal-stone theme
   Palette: background #101214 · surface #16191c · text #E9EEF0
   accent #0F766E · deep #115E59 · light #99F6E4 · deepest #042624
   ============================================================ */

:root {
  --bg: #101214;
  --bg-soft: #15181b;
  --surface: #1a1e21;
  --surface-2: #1f2428;
  --line: #2a3034;
  --line-soft: #23282c;
  --text: #E9EEF0;
  --muted: #a7b3b7;
  --muted-2: #82909a;
  --accent: #0F766E;
  --accent-deep: #115E59;
  --accent-light: #99F6E4;
  --accent-darkest: #042624;
  --amber: #F59E0B;
  --amber-soft: #fbbf24;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-light);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   VAULT NAVIGATION
   ============================================================ */

.vault-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0d0f11;
  border-bottom: 1px solid var(--line);
}

.vault-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.vault-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.vault-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(145deg, #115E59, #042624);
  border: 2px solid var(--accent-light);
  box-shadow: inset 0 0 0 2px #0F766E;
  flex-shrink: 0;
}

.vault-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 70%;
  transform: translate(-50%, -50%);
  background: rgba(153, 246, 228, 0.7);
}

.vault-dial {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b1214;
  border: 2px solid var(--accent-light);
  box-shadow: 0 0 6px rgba(153, 246, 228, 0.5);
}

.vault-dial::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--accent-light);
}

.vault-dial::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--accent-light);
}

.vault-handle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: -2px 0 0 0 var(--accent-light);
}

.vault-rivets {
  position: absolute;
  inset: 0;
  border-radius: 10px;
}

.vault-rivets::before,
.vault-rivets::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow:
    0 36px 0 0 var(--accent-light),
    33px 0 0 0 var(--accent-light),
    33px 36px 0 0 var(--accent-light),
    16px -6px 0 0 var(--accent-light),
    16px 42px 0 0 var(--accent-light),
    -4px 16px 0 0 var(--accent-light),
    36px 16px 0 0 var(--accent-light);
}

.vault-brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}

.vault-brand-name span {
  color: var(--accent-light);
}

.vault-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vault-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}

.vault-links a:hover {
  color: var(--accent-light);
  background-color: var(--surface);
}

.vault-cta {
  flex-shrink: 0;
  display: inline-block;
  background-color: var(--accent);
  color: #06201d;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid var(--accent-light);
  transition: background-color 0.2s, transform 0.2s;
}

.vault-cta:hover {
  background-color: var(--accent-deep);
  color: #06201d;
  transform: translateY(-1px);
}

.vault-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.vault-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
}

/* ============================================================
   CANDLE HERO
   ============================================================ */

.candle-hero {
  padding-top: 150px;
  padding-bottom: 96px;
  background:
    radial-gradient(ellipse at 82% 20%, rgba(15, 118, 110, 0.18), transparent 55%),
    radial-gradient(ellipse at 12% 80%, rgba(4, 38, 36, 0.6), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}

.candle-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.7);
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-copy h1 .accent {
  color: var(--accent-light);
}

.hero-copy .lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.btn-primary {
  background-color: var(--accent);
  color: #06201d;
  border: 1px solid var(--accent-light);
}

.btn-primary:hover {
  background-color: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* CSS-drawn burning candle */
.candle-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.candle {
  position: relative;
  width: 150px;
  height: 260px;
}

.candle-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.32), rgba(251, 191, 36, 0) 70%);
}

.candle-flame {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 34px;
  height: 58px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #fde68a, #f59e0b 60%, #d97706);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 0 26px rgba(245, 158, 11, 0.75);
  animation: flicker 2.6s ease-in-out infinite;
  transform-origin: bottom center;
}

.candle-flame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  background: #fbbf24;
  border-radius: 0 0 60% 60%;
}

@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scaleY(1); }
  25% { transform: translateX(-50%) scaleY(0.96) skewX(2deg); }
  50% { transform: translateX(-50%) scaleY(1.04) skewX(-2deg); }
  75% { transform: translateX(-50%) scaleY(0.97) skewX(1deg); }
}

.candle-wick {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 3px;
  height: 14px;
  transform: translateX(-50%);
  background: #1f2428;
  border-radius: 2px;
}

.candle-body {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 88px;
  height: 172px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #99F6E4, #0F766E 55%, #115E59);
  border-radius: 12px 12px 18px 18px;
  box-shadow: inset 8px 0 16px rgba(4, 38, 36, 0.55), inset -8px 0 16px rgba(153, 246, 228, 0.35);
}

.candle-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  border-radius: 12px 12px 0 0;
  background: #042624;
  box-shadow: inset 0 2px 4px rgba(4, 38, 36, 0.7);
}

.candle-drip {
  position: absolute;
  top: 96px;
  right: 8px;
  width: 12px;
  height: 34px;
  background: linear-gradient(180deg, #99F6E4, #0F766E);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 0 0 #0F766E;
}

.candle-drip::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #99F6E4;
  border-radius: 50%;
}

.candle-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 140px;
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #115E59, #042624);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

.sec-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.sec-kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.sec-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.sec-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 16px;
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */

.statement-section {
  background: linear-gradient(180deg, var(--bg), #0c1416);
  border-bottom: 1px solid var(--line-soft);
  padding: 120px 0;
}

.statement-row {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.statement-row .quote-mark {
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.statement-row p {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.statement-row .accent {
  color: var(--accent-light);
}

.statement-row .statement-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 26px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   STAT COLUMNS
   ============================================================ */

.stats-section {
  background-color: var(--bg);
}

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

.stat-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 12px;
}

.stat-note {
  display: block;
  font-size: 14px;
  color: var(--muted-2);
  margin-top: 6px;
}

/* ============================================================
   SERVICE SCROLL (horizontal)
   ============================================================ */

.services-section {
  background-color: #0c1012;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.service-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 12px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}

.service-scroll::-webkit-scrollbar {
  height: 10px;
}

.service-scroll::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 8px;
}

.service-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

.service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: var(--accent-darkest);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-light);
}

.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  flex: 1;
}

.service-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-light);
  background-color: var(--accent-darkest);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

/* ============================================================
   PROCESS LIST (numbered)
   ============================================================ */

.process-section {
  background-color: var(--bg);
}

.process-list {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 31px;
  width: 2px;
  background: var(--line);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 22px 0;
}

.process-num {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent-darkest);
  border: 2px solid var(--accent);
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-body {
  padding-top: 4px;
}

.process-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.process-body p {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.compare-section {
  background-color: #0c1012;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table thead th {
  background-color: var(--accent-darkest);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--accent);
}

.compare-table thead th.highlight {
  color: var(--accent-light);
}

.compare-table thead th:first-child {
  width: 32%;
}

.compare-table tbody td {
  padding: 18px 22px;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.compare-table tbody td:first-child {
  color: var(--text);
  font-weight: 600;
  background-color: var(--surface);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background-color: var(--surface);
}

.compare-table tbody tr:hover td:first-child {
  background-color: var(--surface-2);
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */

.cta-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(15, 118, 110, 0.22), transparent 55%),
    var(--bg);
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-panel {
  padding: 52px 48px;
}

.cta-panel h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.cta-panel p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 26px;
}

.cta-panel.dark {
  background: linear-gradient(145deg, #0F766E, #042624);
  border-left: 1px solid var(--accent);
}

.cta-panel.dark h3 {
  color: #042624;
}

.cta-panel.dark p {
  color: #06201d;
}

.cta-panel.dark .btn-ghost {
  border-color: #06201d;
  color: #042624;
}

.cta-panel.dark .btn-ghost:hover {
  background-color: #042624;
  color: var(--accent-light);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail .ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--accent-darkest);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .lbl {
  display: block;
  font-size: 13px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-detail .val {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  padding: 13px 16px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  display: none;
  font-size: 14px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
}

.form-status.ok {
  display: block;
  background-color: var(--accent-darkest);
  color: var(--accent-light);
}

.form-status.err {
  display: block;
  background-color: #3a1414;
  color: #fecaca;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: #0c0e10;
  border-top: 2px solid var(--accent);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.footer-col p {
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--muted);
  font-size: 15px;
}

.footer-col ul a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--muted-2);
}

.footer-legal-links {
  display: flex;
  gap: 22px;
}

.footer-legal-links a {
  font-size: 14px;
  color: var(--muted);
}

.footer-legal-links a:hover {
  color: var(--accent-light);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-hidden {
  opacity: 0;
  transform: translateY(26px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .candle-hero .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .candle-stage {
    order: 2;
    padding: 10px 0;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-cta {
    grid-template-columns: 1fr;
  }

  .cta-panel.dark {
    border-left: none;
    border-top: 1px solid var(--accent);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vault-links,
  .vault-cta {
    display: none;
  }

  .vault-toggle {
    display: flex;
  }

  .vault-nav.open .vault-links,
  .vault-nav.open .vault-cta {
    display: flex;
  }

  .vault-nav.open .vault-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: #0d0f11;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    gap: 4px;
  }

  .vault-nav.open .vault-links a {
    padding: 12px 14px;
  }

  .vault-nav.open .vault-cta {
    display: inline-block;
    text-align: center;
    margin: 12px 20px 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy .lede {
    font-size: 17px;
  }

  .statement-row p {
    font-size: 23px;
  }

  .sec-title {
    font-size: 28px;
  }

  .section,
  .statement-section {
    padding: 64px 0;
  }
}
