/* ==========================================================================
   Kopak Labs — kopaklabs.com

   Two accents, two grounds, one column. Teal is the default accent; rust marks
   the app track and the map heart. Nothing else gets a color.

   Radius is zero everywhere and there are no shadows on the page — that is
   central to the look, not an oversight. The only shadow in the design is the
   contact shadow inside the Ohio SVG.
   ========================================================================== */

:root {
  /* color */
  --bone: #F5F5F1;
  --bone-raised: #FAFAF7;
  --ink: #14171A;
  --ink-800: #3C4348;
  --slate: #5C6570;
  --slate-light: #8A9199;
  --rule: #DEDED8;
  --rule-dark: #2A2F34;
  --input-rule: #C8C8C0;
  --teal: #0E7C86;
  --teal-bright: #3FBFC9;
  --rust: #C2611C;
  --rust-bright: #E08A4B;
  --muted-dark: #9BA3AB;
  --muted-darker: #6B7278;

  /* type */
  --sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout */
  --col-pad: clamp(20px, 4vw, 48px);
  --sec-pad: clamp(80px, 10vw, 140px);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Only ever on html. An ancestor between html and a position:sticky element
     silently becomes a scroll container and kills the process-section pin. */
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--rust); }
::selection { background: var(--teal); color: var(--bone); }
input, select, textarea, button { font: inherit; color: inherit; }

/* The § label should land ~88px below the viewport top after an anchor jump.
   Without subtracting the section padding, the heading lands ~200px too low. */
section[id] { scroll-margin-top: calc(88px - var(--sec-pad)); }
#top, #process { scroll-margin-top: 0; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.col {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--col-pad);
}

.section {
  padding: var(--sec-pad) 0;
  border-bottom: 1px solid var(--rule);
}

.sq { width: 8px; height: 8px; display: block; flex: none; }
.sq-10 { width: 10px; height: 10px; }
.sq-teal { background: var(--teal); }
.sq-rust { background: var(--rust); }

/* --------------------------------------------------------------- nav */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 50;
  background: rgba(245, 245, 241, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.wordmark:hover { color: var(--ink); }

.wordmark-text {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.nav-links a { color: var(--slate); }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bone) !important;
}
.nav-cta:hover { background: var(--teal); }

/* --------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Keeps the h1 legible over particles at the top and fades the canvas into the
   section border at the bottom. */
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(245, 245, 241, 0.55) 0%,
    rgba(245, 245, 241, 0) 30%,
    rgba(245, 245, 241, 0) 70%,
    rgba(245, 245, 241, 0.7) 100%);
}

/* pointer-events:none so the canvas keeps receiving the cursor underneath the
   text; the button row switches it back on. */
.hero-col {
  position: relative;
  width: 100%;
  padding: 112px var(--col-pad) 72px;
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--slate);
  margin-bottom: 28px;
}

.rule-28 { width: 28px; height: 1px; background: var(--teal); display: block; flex: none; }

.h1 {
  margin: 0;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 16ch;
  text-wrap: balance;
}

.lede {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 52ch;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  pointer-events: auto;
}

.btn {
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-solid { background: var(--ink); color: var(--bone); }
.btn-solid:hover { background: var(--teal); color: var(--bone); }

.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }

.hero-instrument {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  pointer-events: none;
}

.hero-instrument-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--slate-light);
}

/* --------------------------------------------------------------- shared type */

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--slate);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.sec-num { color: var(--teal); }

.sec-head-dark { color: var(--slate-light); border-bottom-color: var(--rule-dark); }
.sec-num-dark { color: var(--teal-bright); }

.h2 {
  margin: 40px 0 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.w-14 { max-width: 14ch; }
.w-16 { max-width: 16ch; }
.w-18 { max-width: 18ch; }
.w-20 { max-width: 20ch; }
.w-21 { max-width: 21ch; }

.h3 {
  margin: 22px 0 0;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.1;
}

.prose {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-800);
  text-wrap: pretty;
}
.prose-first { margin-top: 28px; }
.prose-tight { margin-top: 24px; max-width: 44ch; }

/* --------------------------------------------------------------- services */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 64px;
}

.card {
  border: 1px solid var(--rule);
  background: var(--bone-raised);
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
}

.track-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.track-a { color: var(--teal); }
.track-b { color: var(--rust); }

.card-body {
  margin: 14px 0 0;
  color: var(--slate);
  line-height: 1.6;
  font-size: 16px;
  text-wrap: pretty;
}

.divider { height: 1px; background: var(--rule); margin: 30px 0 0; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.price-row-last { border-bottom: none; }

.price-name { font-size: 17px; font-weight: 500; }
.price-desc { margin-top: 6px; color: var(--slate); font-size: 14px; line-height: 1.5; }
.price-figure { font-family: var(--mono); font-size: 16px; white-space: nowrap; }

/* margin-top:auto pins the link to the card floor, which is what keeps the two
   unequal cards aligned at the bottom. */
.card-cta {
  margin-top: auto;
  padding-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.card-cta-teal:hover { color: var(--teal); }
.card-cta-rust:hover { color: var(--rust); }

.footnote {
  margin: 36px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--slate-light);
}

/* --------------------------------------------------------------- process */

.process {
  position: relative;
  height: 340vh;      /* the scroll budget for the horizontal travel */
  background: var(--ink);
}

.process-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 88px var(--col-pad) 0;
}
.process-head .col { padding: 0; }

.process-track {
  display: flex;
  gap: clamp(20px, 2.4vw, 32px);
  padding: 0 var(--col-pad);
  will-change: transform;
}

.step {
  flex: 0 0 clamp(280px, 32vw, 420px);
  border-top: 1px solid var(--rule-dark);
  padding-top: 26px;
  color: var(--bone);
}
.step-first { border-top-color: var(--teal-bright); }

.step-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; }
.step-num-teal { color: var(--teal-bright); }
.step-num-rust { color: var(--rust-bright); }

.h3-step {
  margin: 20px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.1;
}

.step-body {
  margin: 16px 0 0;
  color: var(--muted-dark);
  line-height: 1.65;
  font-size: 16px;
  text-wrap: pretty;
}

.step-output {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-darker);
  letter-spacing: 0.06em;
}

.process-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--col-pad) 40px;
}
.process-progress .col { padding: 0; }

.rail { height: 2px; background: var(--rule-dark); position: relative; }
.rail-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--teal-bright); }

/* --------------------------------------------------------------- about */

.about-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
  margin-top: 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(260px, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.ohio-holder { perspective-origin: 50% 60%; }

#ohio-plate {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 400 / 420;
  transform: perspective(1100px) rotateX(15deg) rotateZ(-2.5deg);
  transform-origin: 50% 60%;
}
#ohio-plate text { font-family: var(--mono); }

#ohio-wall, #ohio-grid, #ohio-marker { opacity: 0; }

@keyframes ohio-draw { to { stroke-dashoffset: 0; } }
@keyframes ohio-fade { to { opacity: 1; } }
@keyframes ohio-beat {
  0%, 100% { transform: scale(1); }
  18% { transform: scale(1.22); }
  34% { transform: scale(1); }
  52% { transform: scale(1.14); }
  70% { transform: scale(1); }
}

/* The entrance is CSS keyframes rather than JS timers on purpose: timers get
   throttled in backgrounded frames and the sequence falls out of order. */
.ohio-run #ohio-outline { animation: ohio-draw 1700ms var(--ease) forwards; }
.ohio-run #ohio-wall    { animation: ohio-fade 900ms ease 750ms forwards; }
.ohio-run #ohio-grid    { animation: ohio-fade 700ms ease 1150ms forwards; }
.ohio-run #ohio-marker  { animation: ohio-fade 500ms ease 1550ms forwards; }
.ohio-run #ohio-heart {
  animation: ohio-beat 2600ms ease-in-out 2400ms infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  /* The 1px gap over a colored background is what draws the dividers. */
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.stat { background: var(--bone); padding: 20px 16px; }

.stat-num {
  font-family: var(--mono);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--teal);
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--slate);
  line-height: 1.4;
}

/* --------------------------------------------------------------- faq */

.faq { margin-top: 48px; max-width: 840px; }

.faq details { border-bottom: 1px solid var(--rule); }
.faq details.faq-last { border-bottom: none; }

.faq summary {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 26px 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }

.q-num { font-family: var(--mono); font-size: 12px; color: var(--teal); letter-spacing: 0.1em; }
.q-text { flex: 1; }
.q-glyph { font-family: var(--mono); color: var(--slate-light); font-size: 20px; }
.faq details[open] .q-glyph::after { content: ""; }
.faq details[open] .q-glyph { font-size: 0; }
.faq details[open] .q-glyph::before { content: "−"; font-size: 20px; }

/* 44px indent aligns the answer under the question, past the Q number. */
.answer {
  margin: 0 0 26px 44px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 62ch;
  text-wrap: pretty;
}

/* --------------------------------------------------------------- contact */

.section-contact {
  padding: var(--sec-pad) 0 clamp(60px, 7vw, 100px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  margin-top: 56px;
  align-items: start;
}

.contact-facts {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fact-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--slate-light);
}
.fact-value { display: inline-block; margin-top: 6px; font-size: 18px; }

.form-panel {
  border: 1px solid var(--rule);
  background: var(--bone-raised);
  padding: clamp(24px, 3vw, 38px);
}

#contact-form { display: flex; flex-direction: column; gap: 24px; }

.field-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--slate);
}

.input {
  border: none;
  border-bottom: 1px solid var(--input-rule);
  background: transparent;
  /* 22px of right padding keeps long select options clear of the native arrow */
  padding: 8px 22px 8px 0;
  font-size: 16px;
  border-radius: 0;
}

/* The design specified a color-only focus change, which is below WCAG 2.4.11.
   Keeping the teal underline and thickening it to 2px gives a non-color cue. */
.input:focus {
  outline: none;
  border-bottom-color: var(--teal);
  border-bottom-width: 2px;
  padding-bottom: 7px;
}
.input:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.textarea {
  border: 1px solid var(--input-rule);
  padding: 12px;
  resize: vertical;
}
.textarea:focus {
  border-color: var(--teal);
  border-width: 2px;
  padding: 11px;
}

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-submit {
  padding: 15px 28px;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.btn-submit:hover { background: var(--teal); }
.btn-submit[disabled] { opacity: .55; cursor: default; }

.form-status {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--teal);
}
.form-status.is-error { color: var(--rust); }

/* --------------------------------------------------------------- projects strip */

.section-projects { border-bottom: none; padding-top: clamp(60px, 7vw, 100px); }

.projects-strip {
  margin-top: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.projects-strip-text { flex: 1 1 420px; }
.projects-strip .h2 { margin-top: 0; }
.projects-btn { flex: none; }

/* --------------------------------------------------------------- /projects

   Same tokens, same hairlines, same mono notation as the main page. The rows
   borrow the process section's shape: a mono index in a left gutter, a rule
   across the top, and the status carried as a label rather than a badge.
   -------------------------------------------------------------------------- */

.nav-links a.is-current { color: var(--ink); }

.page-head {
  padding: calc(64px + clamp(56px, 8vw, 104px)) 0 clamp(48px, 6vw, 72px);
}

.page-title { margin-top: 40px; }

.page-lede {
  margin-top: 28px;
  max-width: 56ch;
  color: var(--slate);
}

.section-list { padding-top: 0; border-bottom: none; }

.proj-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.proj {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--rule);
}

.proj-index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal);
  padding-top: 8px;
}

.proj-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.proj-title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.1;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding-top: 4px;
}
.tag-web { color: var(--teal); }
.tag-app { color: var(--rust); }

.proj-body {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 66ch;
  text-wrap: pretty;
}
.proj-body em { font-style: italic; }

.proj-foot {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.proj-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
}
.proj-link:hover { color: var(--teal); border-bottom-color: var(--teal); }

.status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.status-live   { color: var(--teal); }
.status-source { color: var(--teal); }
.status-soon   { color: var(--slate-light); }

.proj-outro { margin-top: clamp(40px, 5vw, 64px); }
.proj-outro .prose { margin-top: 0; max-width: 52ch; }

@media (max-width: 560px) {
  .proj { grid-template-columns: 1fr; gap: 12px; }
  .proj-index { padding-top: 0; }
}

/* --------------------------------------------------------------- footer */

.footer { border-top: 1px solid var(--rule); padding: 36px 0; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--slate-light);
}

.footer-mark { display: flex; align-items: center; gap: 10px; }
.footer-link { color: var(--slate-light); }
.footer-link:hover { color: var(--ink); }

/* --------------------------------------------------------------- reveals */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal][data-shift="16"] { transform: translateY(16px); }
[data-reveal][data-shift="28"] { transform: translateY(28px); }
[data-reveal][data-slow] { transition-duration: 1s; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------- responsive

   The design is fluid by construction — clamp() type, auto-fit grids — and
   reflows on its own down to about 720px. These three breakpoints cover the
   places where it does not, all of which the handoff flagged as undesigned.
   -------------------------------------------------------------------------- */

/* About uses a fixed two-column minmax, so unlike every other grid here it
   will not collapse on its own. */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .ohio-holder { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* Drop the pin below 900px: the cards are wider than the viewport and 340vh of
   pinned scrolling is a long thumb journey. The steps become a plain stack. */
@media (max-width: 900px) {
  .process { height: auto; }
  .process-pin {
    position: static;
    height: auto;
    overflow: visible;
    padding: var(--sec-pad) 0;
  }
  .process-head { position: static; padding: 0 var(--col-pad) 48px; }
  .process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    transform: none !important;
  }
  .step { flex: none; }
  .process-progress { display: none; }
}

/* No mobile nav was ever designed. Rather than invent one, drop the anchor
   links and keep the two things that matter: who this is, and the CTA. Every
   section is still reachable by scrolling, and /projects is linked twice more
   further down the page. */
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 520px) {
  .hero-instrument-inner { font-size: 10px; }
  .projects-btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

  #ohio-plate { transform: perspective(1100px) rotateX(15deg) rotateZ(-2.5deg) !important; }
  #ohio-wall, #ohio-grid, #ohio-marker { opacity: 1; }
  .ohio-run #ohio-outline,
  .ohio-run #ohio-wall,
  .ohio-run #ohio-grid,
  .ohio-run #ohio-marker,
  .ohio-run #ohio-heart { animation: none; }
  #ohio-outline { stroke-dashoffset: 0 !important; }
}
