/* Velocity Labs LLC — site styles. No JS, no external assets.
   Dark navy is the default scheme; light adapts via prefers-color-scheme. */

:root {
  --bg: #0b1526;
  --bg-raised: #101d33;
  --bg-glow: #12233f;
  --text: #e8eef7;
  --muted: #9fb0c7;
  --accent: #4da3ff;
  --accent-strong: #2f7fe0;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --grid-line: rgba(77, 163, 255, 0.055);
  --card-glow: rgba(77, 163, 255, 0.14);
  --card-sheen: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas,
    "Liberation Mono", monospace;
  --radius: 0.45rem;
  --error-text: #ffb9b9;
  --error-bg: rgba(255, 107, 107, 0.1);
  --error-line: rgba(255, 107, 107, 0.45);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f7fb;
    --bg-raised: #ffffff;
    --bg-glow: #e2ecf8;
    --text: #16273f;
    --muted: #52657f;
    --accent: #1f6fd0;
    --accent-strong: #17589f;
    --line: rgba(22, 39, 63, 0.12);
    --line-strong: rgba(22, 39, 63, 0.28);
    --grid-line: rgba(23, 88, 159, 0.09);
    --card-glow: rgba(31, 111, 208, 0.12);
    --card-sheen: 0 1px 2px rgba(22, 39, 63, 0.05), 0 12px 28px -20px rgba(22, 39, 63, 0.35);
    --error-text: #a02020;
    --error-bg: rgba(200, 40, 40, 0.07);
    --error-line: rgba(200, 40, 40, 0.4);
  }
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(70rem 45rem at 75% -12%, var(--bg-glow), transparent 60%),
    radial-gradient(55rem 38rem at -12% 108%, color-mix(in srgb, var(--bg-glow) 75%, transparent), transparent 65%),
    var(--bg);
}

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

a { color: var(--accent); }

.container {
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-strong);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 0.5rem 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-block: 0.85rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span { color: var(--accent); }

.wordmark .mark { color: var(--accent); flex: none; }

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

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

.site-nav a[aria-current="page"] { color: var(--accent); }

.site-nav .button {
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
}

/* ---------- buttons ---------- */

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.3rem;
  background: var(--accent-strong);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.button:hover { background: var(--accent); }

.button-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.button-ghost:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- type ---------- */

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h3 { font-size: 1.08rem; line-height: 1.35; }

.kicker {
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
  margin-right: 0.65rem;
  vertical-align: 0.22em;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- page structure ---------- */

main { flex: 1; }

.hero {
  position: relative;
  padding-block: clamp(4rem, 10vw, 6.5rem) clamp(3rem, 7vw, 4.5rem);
}

/* Faint engineering grid, fading out radially. Pure CSS, no assets. */
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(60rem 34rem at 70% 10%, black, transparent 72%);
  mask-image: radial-gradient(60rem 34rem at 70% 10%, black, transparent 72%);
  pointer-events: none;
}

.hero-inner { max-width: 46rem; position: relative; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-art { position: relative; }

.hero-art::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  background: radial-gradient(closest-side, var(--card-glow), transparent 72%);
  pointer-events: none;
}

.hero-art svg {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 60px rgba(3, 8, 18, 0.5));
}

.hero h1 { margin-bottom: 1.25rem; }

.hero .lede { margin-bottom: 2.25rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.stat-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.75rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.stat { display: grid; gap: 0.1rem; }

.stat-n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.stat-l {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 5rem) 1rem;
}

.page-hero .hero-inner { max-width: 46rem; }

.page-hero h1 { margin-bottom: 1.1rem; }

.section { padding-block: clamp(3.25rem, 8vw, 5.25rem); }

.section-head { max-width: 46rem; margin-bottom: 2.5rem; }

.section-head p { color: var(--muted); margin-top: 0.9rem; }

/* ---------- icon chips ---------- */

.icon {
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.icon svg { width: 20px; height: 20px; display: block; }

.icon.neg { color: var(--muted); }

/* ---------- statement band ---------- */

.statement {
  position: relative;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-raised) 55%, transparent);
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.statement p {
  max-width: 52rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.statement em {
  font-style: italic;
  color: var(--accent);
}

/* ---------- beats (what we do) ---------- */

.beats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
}

.beat {
  position: relative;
  border-top: 2px solid var(--accent);
  padding-top: 1.25rem;
}

.beat .num {
  position: absolute;
  top: 0.85rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 22%, transparent);
}

.beat h3 { margin: 0 0 0.5rem; }

.beat p { font-size: 0.95rem; color: var(--muted); }

.rule {
  margin-top: 2.75rem;
  max-width: 44rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
}

/* ---------- scenario cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.75rem;
}

.card {
  border-top: 1px solid var(--line-strong);
  padding: 1.6rem 0 2rem;
  transition: border-color 0.15s ease;
}

.card:hover { border-top-color: var(--accent); }

.card h3 { margin-bottom: 0.55rem; }

.card p { font-size: 0.95rem; color: var(--muted); }

.cards-coda {
  margin-top: 2.25rem;
  max-width: 46rem;
  color: var(--muted);
}

.cards-coda strong { color: var(--text); }

.cards-coda .coda-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.cards-coda .coda-link:hover { text-decoration: underline; }

/* ---------- split sections (proof, about teaser) ---------- */

.band {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-raised) 55%, transparent);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split .body p { color: var(--muted); margin-top: 0.9rem; }

.split .body p strong { color: var(--text); }

.minisite {
  display: block;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.minisite:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-2px);
}

.minisite .mini-mark {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.minisite p { font-size: 0.95rem; color: var(--muted); }

.minisite .mini-cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 650;
  color: var(--accent);
}

/* Live-site screenshot in a minimal browser chrome. */
.browser-frame {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
  box-shadow: var(--card-sheen);
  transition: border-color 0.15s ease;
}

.browser-frame:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}

.browser-frame .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.browser-frame .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}

.browser-frame .url {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.browser-frame img { display: block; width: 100%; }

.browser-frame + .quote-card { margin-top: 1.4rem; }

.quote-card {
  border-left: 3px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.6rem;
}

.quote-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.55;
  font-style: italic;
}

.quote-card figcaption {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.quote-card figcaption strong { color: var(--text); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 7vw, 3.75rem) 2rem;
  text-align: center;
  background:
    radial-gradient(40rem 20rem at 50% -30%, var(--bg-glow), transparent 70%),
    var(--bg-raised);
  box-shadow: var(--card-sheen);
}

/* Oversized brand chevron watermark, bottom-right. */
.cta-band::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 24rem;
  height: 24rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M16 18 L32 48 L48 18 L39 18 L32 33 L25 18 Z' fill='%234da3ff' fill-opacity='0.07'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.cta-band > * { position: relative; }

.cta-band h2 { max-width: 34rem; margin-inline: auto; }

.cta-band p {
  max-width: 36rem;
  margin: 1rem auto 2rem;
  color: var(--muted);
}

.cta-band .aside {
  margin: 1.5rem auto 0;
  font-size: 0.9rem;
}

/* ---------- prose pages ---------- */

.prose { max-width: 46rem; }

.prose h2 { margin-top: 3rem; margin-bottom: 1rem; }

.prose p { margin-bottom: 1.1rem; }

.prose p.muted, .muted { color: var(--muted); }

.prose ul { margin: 0 0 1.1rem 1.25rem; }

.prose li { margin-bottom: 0.5rem; }

/* numbered stages on the Approach page — a connected timeline rail */

.stages { display: grid; gap: 2.25rem; max-width: 46rem; }

.stage {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.4rem;
}

.stage:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(1.7rem - 1px);
  top: 3.7rem;
  bottom: -2.1rem;
  width: 2px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 55%, transparent),
    color-mix(in srgb, var(--accent) 12%, transparent));
}

.stage .num {
  position: relative;
  z-index: 1;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
}

.stage h3 { margin-bottom: 0.3rem; font-size: 1.2rem; padding-top: 0.55rem; }

.stage .stage-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.stage p { color: var(--muted); }

.stages-caveat {
  margin-top: 2.5rem;
  max-width: 44rem;
  color: var(--muted);
}

/* two-column fact lists (what it's like / what we don't do) */

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.75rem;
}

.fact {
  border-top: 1px solid var(--line-strong);
  padding: 1.4rem 0 0.5rem;
}

.fact h3 { margin-bottom: 0.4rem; font-size: 1.02rem; }

.fact p { font-size: 0.93rem; color: var(--muted); }

/* ---------- about page ---------- */

.founder {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2.5rem;
  align-items: start;
}

.founder .photo { position: relative; }

/* Offset accent frame behind a duotone portrait — editorial, on-palette. */
.founder .photo::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: var(--radius);
}

.founder .photo img {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.04) brightness(0.98);
}

.founder .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--accent) 30%, transparent), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.founder h2 { margin-bottom: 0.35rem; }

.founder .role { color: var(--accent); font-weight: 650; margin-bottom: 1rem; }

.founder p { color: var(--muted); margin-bottom: 1rem; }

.founder p strong { color: var(--text); }

/* ---------- forms ---------- */

.form-wrap { max-width: none; }

.start-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.form-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--card-sheen);
}

.aside-card {
  position: sticky;
  top: 5.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  background:
    radial-gradient(24rem 14rem at 50% -30%, var(--bg-glow), transparent 75%),
    var(--bg-raised);
  box-shadow: var(--card-sheen);
}

.aside-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.check-list { list-style: none; }

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.check-list svg { color: var(--accent); flex: none; margin-top: 0.2rem; }

.aside-card .fine {
  border-top: 1px solid var(--line);
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

form.brief {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.form-card form.brief { margin-top: 1.5rem; }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field label {
  display: block;
  font-weight: 650;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.field .hint {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.req { color: var(--accent); }

input, select, textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--line-strong);
  border-radius: 0.35rem;
  padding: 0.68rem 0.85rem;
}

textarea { min-height: 7.5rem; resize: vertical; }

input::placeholder, textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 70%, transparent);
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.form-note { font-size: 0.9rem; color: var(--muted); }

/* Honeypot: never visible to humans. */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Server-side failure notice, revealed by redirecting to /start#form-error */
.form-error {
  display: none;
  border: 1px solid var(--error-line);
  background: var(--error-bg);
  color: var(--error-text);
  border-radius: 0.6rem;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.form-error:target { display: block; }

.form-error a { color: inherit; font-weight: 650; }

/* ---------- focus / footer / misc ---------- */

a:focus-visible, .button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-block: 2.75rem 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.site-footer .wordmark { font-size: 0.85rem; }

.site-footer p { color: var(--muted); margin-top: 0.75rem; }

.site-footer h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

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

.site-footer li { margin-bottom: 0.45rem; }

.site-footer a { color: var(--muted); text-decoration: none; }

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

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ---------- responsive ---------- */

@media (max-width: 60rem) {
  .beats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-art { max-width: 34rem; }
  .start-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}

@media (max-width: 40rem) {
  .beats { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder .photo { max-width: 16rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stage { grid-template-columns: 2.75rem 1fr; gap: 1rem; }
  .stage .num {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent);
  }
  .stage:not(:last-child)::before { left: calc(1.375rem - 1px); top: 3rem; }
  .stage h3 { padding-top: 0.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .minisite, .button { transition: none; }
  .card:hover, .minisite:hover { transform: none; }
}
