/* ==========================================================================
   STAINLESS STEEL TECH — 2026 REBUILD
   Big fluid type, generous space, scroll-driven motion, glass nav.
   Signature motif carried over: laser-cut clipped corners (subtle now).
   ========================================================================== */

:root {
  --st-graphite:      #0d0e10;
  --st-graphite-2:     #17181b;
  --st-steel:          #52565d;
  --st-steel-light:    #d8dade;
  --st-paper:          #f6f5f2;
  --st-white:          #ffffff;
  --st-ink:            #0d0e10;
  --st-ink-soft:       #63666d;
  --st-blaze:          #ff5b1f;
  --st-blaze-dark:     #d94612;

  --font-display: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --clip: 20px;
  --clip-sm: 10px;
  --container-w: 1280px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.68,0,1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- Reset / base -------------------------------------------------------*/
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--st-ink);
  background: var(--st-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  color: var(--st-graphite);
}
p { line-height: 1.7; color: var(--st-ink-soft); margin: 0 0 1em; font-size: 17px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }

/* ---- clipped-corner utility (kept, subtler) -------------------------------*/
.st-clip { clip-path: polygon(var(--clip) 0, 100% 0, 100% calc(100% - var(--clip)), calc(100% - var(--clip)) 100%, 0 100%, 0 var(--clip)); }
.st-clip-sm { clip-path: polygon(var(--clip-sm) 0, 100% 0, 100% calc(100% - var(--clip-sm)), calc(100% - var(--clip-sm)) 100%, 0 100%, 0 var(--clip-sm)); }

/* ---- Eyebrow --------------------------------------------------------------*/
.st-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--st-blaze); margin-bottom: 18px;
}

/* ---- Container / sections --------------------------------------------------*/
.st-container { max-width: var(--container-w); margin: 0 auto; padding: 0 32px; }
.st-section { padding: 160px 0; }
.st-section-tight { padding: 90px 0; }
.st-section-dark { background: var(--st-graphite); color: var(--st-white); }
.st-section-dark p { color: #9a9da3; }
.st-section-dark h1, .st-section-dark h2, .st-section-dark h3, .st-section-dark h4 { color: var(--st-white); }
.st-section-paper { background: var(--st-paper); }

.st-head { max-width: 680px; margin-bottom: 64px; }
.st-head.center { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.st-title-xl { font-size: clamp(44px, 7vw, 104px); }
.st-title-lg { font-size: clamp(34px, 4.4vw, 58px); }
.st-title-md { font-size: clamp(26px, 2.6vw, 32px); }
.st-lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--st-ink-soft); margin-top: 22px; font-weight: 400; }
.st-section-dark .st-lede { color: #9a9da3; }

@media (max-width: 700px) {
  .st-section { padding: 96px 0; }
  .st-container { padding: 0 20px; }
}

/* ---- Buttons ----------------------------------------------------------- */
.st-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 16px 30px; border-radius: 100px;
  border: 1px solid var(--st-graphite); color: var(--st-graphite); background: transparent;
  cursor: pointer; transition: transform .45s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.st-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(13,14,16,0.14); }
.st-btn-solid { background: var(--st-blaze); border-color: var(--st-blaze); color: var(--st-white); }
.st-btn-solid:hover { background: var(--st-blaze-dark); border-color: var(--st-blaze-dark); box-shadow: 0 14px 28px rgba(255,91,31,0.32); }
.st-btn-ghost-light { border-color: rgba(255,255,255,0.4); color: var(--st-white); }
.st-btn-ghost-light:hover { background: var(--st-white); color: var(--st-graphite); }
.st-btn-arrow span { display: inline-block; transition: transform .35s var(--ease); }
.st-btn-arrow:hover span { transform: translateX(5px); }

/* ---- Header / Nav (glass, shrinks on scroll) ------------------------------*/
.st-topbar {
  background: var(--st-graphite); color: #b6b8bd; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em;
  overflow: hidden; transition: max-height .4s var(--ease), opacity .4s var(--ease);
  max-height: 38px; opacity: 1;
}
.st-topbar.st-collapsed { max-height: 0; opacity: 0; }
.st-topbar .st-container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.st-topbar-links { display: flex; gap: 24px; }
.st-topbar-links li a { color: #b6b8bd; display: flex; align-items: center; gap: 6px; transition: color .25s ease; }
.st-topbar-links li a:hover { color: var(--st-blaze); }

.st-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(13,14,16,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .4s ease;
}
.st-header .st-container { display: flex; align-items: center; justify-content: space-between; height: 78px; transition: height .35s var(--ease); }
.st-header.st-shrink .st-container { height: 62px; }
.st-logo img { height: 36px; width: auto; transition: height .35s var(--ease); }
.st-header.st-shrink .st-logo img { height: 30px; }
.st-nav { display: flex; align-items: center; gap: 6px; }
.st-nav > ul { display: flex; align-items: center; gap: 2px; }
.st-nav-link {
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: #e4e5e7;
  padding: 10px 16px; display: inline-flex; align-items: center; gap: 6px; position: relative;
  transition: color .25s ease;
}
.st-nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 1.5px;
  background: var(--st-blaze); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.st-nav-link:hover, .st-nav-item.open > .st-nav-link, .st-nav-link.active { color: #fff; }
.st-nav-link:hover::after, .st-nav-link.active::after { transform: scaleX(1); }
.st-nav-item { position: relative; }
.st-nav-cta { margin-left: 16px; }
.st-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.st-hamburger span { width: 22px; height: 2px; background: var(--st-white); display: block; transition: transform .3s ease, opacity .3s ease; }

.st-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: rgba(23,24,27,0.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08); padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  border-radius: 14px; overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.st-nav-item.open > .st-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.st-dropdown .st-dropdown { top: -10px; left: 100%; }
.st-dropdown li a {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 20px;
  font-size: 14px; color: #cfd1d5; white-space: nowrap; transition: color .2s ease, background .2s ease;
}
.st-dropdown li a:hover { color: var(--st-white); background: rgba(255,91,31,0.12); }
.st-dropdown li { position: relative; }

@media (max-width: 1024px) {
  .st-hamburger { display: flex; }
  .st-nav {
    position: fixed; inset: 0 0 0 auto; width: min(380px, 90vw); height: 100vh;
    background: var(--st-graphite); transform: translateX(100%); transition: transform .45s var(--ease);
    padding: 100px 28px 28px; overflow-y: auto; flex-direction: column; align-items: stretch;
  }
  .st-nav.st-nav-open { transform: translateX(0); }
  .st-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .st-nav-link { padding: 16px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: space-between; }
  .st-nav-link::after { display: none; }
  .st-dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; width: 100%; border: none; background: rgba(255,255,255,0.03); box-shadow: none; border-radius: 0; }
  .st-nav-item.open > .st-dropdown { display: block; }
  .st-dropdown .st-dropdown { left: 0; }
  .st-nav-cta { margin: 24px 0 0; }
  .st-nav-cta .st-btn { width: 100%; justify-content: center; }
  .st-topbar-links li:nth-child(1) span, .st-topbar-links li:nth-child(2) span { display: none; }
}

/* ---- Hero (parallax, big fluid type, staggered fade-in) -------------------*/
.st-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; background: var(--st-graphite); overflow: hidden; }
.st-hero-slide { position: absolute; inset: -6% -6%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease); will-change: transform; }
.st-hero-slide.active { opacity: 1; }
.st-hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,14,16,0.98) 0%, rgba(13,14,16,0.55) 48%, rgba(13,14,16,0.28) 100%); }
.st-hero-content { position: relative; z-index: 2; padding: 60px 0 96px; color: var(--st-white); }
.st-hero-kicker { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--st-blaze); margin-bottom: 22px; opacity:0; transform: translateY(14px); animation: heroUp .9s var(--ease) .1s forwards; }
.st-hero-title { font-size: clamp(42px, 7.4vw, 108px); max-width: 980px; font-weight: 800; letter-spacing: -0.03em; }
.st-hero-title span { display: block; opacity: 0; transform: translateY(40px); animation: heroUp 1s var(--ease) forwards; }
.st-hero-title span:nth-child(2) { animation-delay: .16s; }
.st-hero-sub { font-size: clamp(16px,1.6vw,19px); color: #c9cbd0; max-width: 560px; margin: 26px 0 36px; opacity:0; transform: translateY(16px); animation: heroUp .9s var(--ease) .4s forwards; }
.st-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity:0; transform: translateY(16px); animation: heroUp .9s var(--ease) .55s forwards; }
.st-hero-dots { position: absolute; bottom: 36px; right: 32px; display: flex; gap: 8px; z-index: 3; }
.st-hero-dots button { width: 26px; height: 3px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; border-radius: 2px; transition: background .3s ease; }
.st-hero-dots button.active { background: var(--st-blaze); }
.st-hero-scroll {
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,0.65); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.st-hero-scroll::after {
  content: ''; width: 1px; height: 34px; background: rgba(255,255,255,0.4);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.01% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* ---- Stat strip -----------------------------------------------------------*/
.st-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.08); }
.st-stat { padding: 44px 28px; border-right: 1px solid rgba(255,255,255,0.08); }
.st-stat:last-child { border-right: none; }
.st-stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,3.4vw,44px); color: var(--st-white); letter-spacing: -0.02em; }
.st-stat-num .accent { color: var(--st-blaze); }
.st-stat-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #9a9da3; margin-top: 10px; }
@media (max-width: 768px) { .st-stats { grid-template-columns: repeat(2, 1fr); } .st-stat:nth-child(2) { border-right: none; } }

/* ---- Grids / cards --------------------------------------------------------*/
.st-grid { display: grid; gap: 32px; }
.st-grid-2 { grid-template-columns: repeat(2, 1fr); }
.st-grid-3 { grid-template-columns: repeat(3, 1fr); }
.st-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .st-grid-2, .st-grid-3, .st-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .st-grid-2, .st-grid-3, .st-grid-4 { grid-template-columns: 1fr; } }

.st-card {
  background: var(--st-white); border: 1px solid #eae8e2; border-radius: 20px; padding: 36px 30px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}
.st-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(13,14,16,0.10); border-color: transparent; }
.st-card h3 { font-size: 19px; margin-bottom: 10px; }
.st-card p { font-size: 14.5px; margin-bottom: 0; }

.st-media-card { position: relative; overflow: hidden; background: var(--st-graphite); aspect-ratio: 4/5; border-radius: 20px; }
.st-media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.st-media-card:hover img { transform: scale(1.08); }
.st-media-card-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,14,16,0.94) 0%, rgba(13,14,16,0) 58%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: var(--st-white);
}
.st-media-card-overlay .st-eyebrow { margin-bottom: 8px; }
.st-media-card-overlay h3 { color: var(--st-white); font-size: 19px; }

.st-value-card {
  text-align: left; padding: 38px 30px; background: var(--st-white); border: 1px solid #eae8e2; border-radius: 20px;
  transition: transform .5s var(--ease), border-color .5s ease;
}
.st-value-card:hover { transform: translateY(-6px); }
.st-value-card img { width: 44px; height: 44px; margin-bottom: 22px; }

/* ---- Split section --------------------------------------------------------*/
.st-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .st-split { grid-template-columns: 1fr; gap: 40px; } }
.st-split-media { position: relative; overflow: hidden; border-radius: 24px; }
.st-split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1.2s var(--ease); }
.st-split-media:hover img { transform: scale(1.05); }

/* ---- Rich text -------------------------------------------------------------*/
.st-richtext { font-size: 17px; color: var(--st-ink-soft); }
.st-section-dark .st-richtext, .st-section-dark .st-richtext p { color: #b0b2b8; }

/* ---- Page banner ------------------------------------------------------------*/
.st-page-banner { position: relative; padding: 190px 0 90px; background: var(--st-graphite); background-size: cover; background-position: center; }
.st-page-banner::after { content: ''; position: absolute; inset: 0; background: rgba(13,14,16,0.8); }
.st-page-banner .st-container { position: relative; z-index: 2; }
.st-page-banner h1 { color: var(--st-white); font-size: clamp(36px, 5vw, 62px); }
.st-crumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--st-blaze); margin-top: 14px; }
.st-crumb a { color: #b6b8bd; transition: color .2s ease; }
.st-crumb a:hover { color: var(--st-blaze); }

/* ---- Gallery / lightbox grid ----------------------------------------------*/
.st-gallery-item { position: relative; overflow: hidden; aspect-ratio: 1/1; cursor: zoom-in; border-radius: 18px; }
.st-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.st-gallery-item:hover img { transform: scale(1.1); }
.st-gallery-item::after { content: '\002B'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--st-white); background: rgba(13,14,16,0); transition: background .3s ease; }
.st-gallery-item:hover::after { background: rgba(13,14,16,0.45); }

/* ---- Forms ------------------------------------------------------------- */
.st-field { margin-bottom: 22px; }
.st-field label { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 9px; color: var(--st-ink-soft); }
.st-section-dark .st-field label { color: #9a9da3; }
.st-field span { color: var(--st-blaze); }
.st-field input, .st-field textarea, .st-field select {
  width: 100%; border: 1px solid #dedcd5; background: var(--st-white); border-radius: 12px; padding: 14px 18px;
  font-family: var(--font-body); font-size: 15px; color: var(--st-ink); transition: border-color .25s ease, box-shadow .25s ease;
}
.st-field input:focus, .st-field textarea:focus, .st-field select:focus { outline: none; border-color: var(--st-blaze); box-shadow: 0 0 0 4px rgba(255,91,31,0.14); }
.st-form-card { background: var(--st-white); padding: 44px; border: 1px solid #eae8e2; border-radius: 24px; }

/* ---- Footer ------------------------------------------------------------ */
.st-footer { background: var(--st-graphite); color: #9a9da3; }
.st-footer-top { padding: 96px 0 56px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .st-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .st-footer-top { grid-template-columns: 1fr; } }
.st-footer h4 { color: var(--st-white); font-size: 14px; letter-spacing: 0.04em; margin-bottom: 22px; font-weight: 700; }
.st-footer-logo { height: 32px; margin-bottom: 20px; }
.st-footer ul li { margin-bottom: 14px; font-size: 14.5px; display: flex; align-items: flex-start; gap: 10px; }
.st-footer ul li i { color: var(--st-blaze); margin-top: 4px; }
.st-footer a { color: #9a9da3; transition: color .2s ease; }
.st-footer a:hover { color: var(--st-white); }
.st-footer-social { display: flex; gap: 10px; }
.st-footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14); border-radius: 50%; color: var(--st-white); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.st-footer-social a:hover { background: var(--st-blaze); border-color: var(--st-blaze); transform: translateY(-3px); }
.st-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 26px 0; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.st-newsletter { display: flex; gap: 0; margin-top: 6px; border-radius: 100px; overflow: hidden; border: 1px solid rgba(255,255,255,0.18); }
.st-newsletter input { flex: 1; border: none; background: transparent; color: var(--st-white); padding: 13px 18px; font-size: 14px; }
.st-newsletter input:focus { outline: none; }
.st-newsletter button { font-family: var(--font-body); font-weight: 600; font-size: 13px; padding: 0 20px; background: var(--st-blaze); color: var(--st-white); border: none; cursor: pointer; transition: background .25s ease; }
.st-newsletter button:hover { background: var(--st-blaze-dark); }

/* ---- Modal (glass) ---------------------------------------------------------*/
.st-modal-backdrop { position: fixed; inset: 0; background: rgba(13,14,16,0.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 2000; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.st-modal-backdrop.open { opacity: 1; visibility: visible; }
.st-modal { background: var(--st-white); width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; border-radius: 24px; transform: translateY(20px) scale(.97); transition: transform .4s var(--ease); }
.st-modal-backdrop.open .st-modal { transform: translateY(0) scale(1); }
.st-modal-head { background: var(--st-graphite); color: var(--st-white); padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; border-radius: 24px 24px 0 0; }
.st-modal-head h3 { color: var(--st-white); font-size: 18px; margin: 0; }
.st-modal-close { background: none; border: none; color: var(--st-white); font-size: 22px; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s ease, transform .2s ease; }
.st-modal-close:hover { opacity: 1; transform: rotate(90deg); }
.st-modal-body { padding: 30px; }
.st-form-note { font-size: 13px; color: var(--st-ink-soft); margin-top: 12px; }
.st-alert-success { background: #eaf7ee; border: 1px solid #b7e2c2; color: #1e6b34; border-radius: 12px; padding: 13px 18px; margin-bottom: 18px; font-size: 14px; display: none; }
.st-alert-success.show { display: block; }

/* ---- Lightbox (glass) -------------------------------------------------------*/
.st-lightbox { position: fixed; inset: 0; background: rgba(10,10,11,0.96); backdrop-filter: blur(10px); z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s; }
.st-lightbox.open { opacity: 1; visibility: visible; }
.st-lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 12px; transform: scale(.96); transition: transform .4s var(--ease); }
.st-lightbox.open img { transform: scale(1); }
.st-lightbox-close { position: absolute; top: 26px; right: 34px; color: #fff; font-size: 34px; background: none; border: none; cursor: pointer; line-height: 1; transition: transform .2s ease; }
.st-lightbox-close:hover { transform: rotate(90deg); }

/* ---- Scroll reveal (IntersectionObserver driven) --------------------------*/
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .23s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .30s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .37s; }
.reveal-stagger.in > *:nth-child(n+7) { transition-delay: .42s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .st-hero-title span, .st-hero-kicker, .st-hero-sub, .st-hero-actions { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.fa, .fas, .far, .fab { font-family: inherit; }
.st-center { text-align: center; }
