/* ============================================================================
   Agent Foundry — landing v2.1
   Near-black, one magenta accent. Floating pill nav, a load-in choreography,
   a looping product demo, gradient seams between sections. One easing
   language everywhere: var(--ease-out), 200-300ms micro / 600ms entrances.
   ========================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: var(--max-page); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 760px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.5rem 1rem; border-radius: var(--r-sm); z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-soft); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* --------------------------- Floating pill nav ---------------------------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 1.1rem;
  padding: 8px 8px 8px 18px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--surface) 62%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: padding var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.nav.scrolled .nav-pill {
  padding-top: 6px; padding-bottom: 6px;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 10px 28px rgba(0, 0, 0, 0.6);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: -0.01em; color: var(--ink); white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.mark {
  width: 17px; height: 17px; border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 12px var(--accent-glow);
}

.links { display: flex; align-items: center; gap: 1.1rem; }
.link { font-size: 0.9rem; font-weight: 500; }
.link.quiet {
  color: var(--ink-muted);
  background: linear-gradient(currentColor 0 0) no-repeat left bottom / 0% 1px;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out), background-size var(--dur-med) var(--ease-out);
}
.link.quiet:hover { color: var(--ink); background-size: 100% 1px; }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }

/* ------------------------------ Buttons ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--r-pill); padding: 0.6rem 1.25rem;
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform 100ms var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 4px 18px -8px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-deep); color: var(--accent-ink); box-shadow: 0 8px 24px -8px var(--accent-glow); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink-faint); color: var(--ink); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.88rem; }
.btn-lg { padding: 0.85rem 1.7rem; font-size: 1.02rem; }

/* ------------------------- Load-in choreography ---------------------------
   .lo elements rise in on page load, staggered by --i. The demo also
   de-blurs. JS adds .ready to <body> on first frame. */
.lo { opacity: 0; transform: translateY(14px); }
body.ready .lo {
  animation: lo-in var(--dur-slow) var(--ease-out) forwards;
  animation-delay: calc(var(--i, 1) * 90ms);
}
.demo.lo { filter: blur(8px); transform: translateY(14px) scale(0.985); }
body.ready .demo.lo { animation-name: lo-in-demo; }
@keyframes lo-in { to { opacity: 1; transform: none; } }
@keyframes lo-in-demo { to { opacity: 1; transform: none; filter: blur(0); } }

/* -------------------------------- Hero ------------------------------------ */
.hero { position: relative; padding: clamp(7rem, 16vh, 10rem) 0 clamp(3.5rem, 8vh, 5rem); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 80%;
  background:
    radial-gradient(640px 340px at 50% 0%, var(--accent-glow), transparent 70%),
    radial-gradient(900px 500px at 50% -10%, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}
.hero-in { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  max-width: 18ch;
}
h1 em { font-style: normal; color: var(--accent); }

.sub {
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  max-width: 56ch;
  margin: 0 0 2.1rem;
}

/* Terminal card */
.terminal {
  width: min(680px, 100%);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-pop);
  text-align: left;
  overflow: hidden;
}
.t-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--raised);
}
.t-bar .dot, .d-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.t-name { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); }
.t-body { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1rem 1rem 1.1rem; }
.t-cmd {
  font-family: var(--font-mono); font-size: 0.86rem; line-height: 1.55;
  color: var(--ink); flex: 1; min-width: 0;
  overflow-wrap: anywhere; word-break: break-all;
}
.t-prompt { color: var(--accent); margin-right: 0.55em; user-select: none; }
.t-pipe { color: var(--accent-soft); }

.copy {
  flex: none; display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600;
  color: var(--ink-muted);
  background: var(--raised); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 0.45rem 0.7rem; cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast), transform 100ms var(--ease-out);
}
.copy:active { transform: scale(0.96); }
.copy svg { width: 16px; height: 16px; }
.copy:hover { color: var(--ink); border-color: var(--ink-faint); }
.copy[data-copied] { color: var(--ok); border-color: var(--ok); }

.hero-note { color: var(--ink-faint); font-size: 0.92rem; margin: 1.1rem 0 0; max-width: 56ch; }
.hero-note a { color: var(--ink-muted); text-decoration: underline; text-underline-offset: 3px; }
.hero-note a:hover { color: var(--accent-soft); }

/* --------------------------- The product demo ----------------------------- */
.demo {
  width: min(820px, 100%);
  margin-top: 3rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  text-align: left;
  overflow: hidden;
}
.d-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--raised);
}
.d-name { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); }
.d-body { padding: 1.1rem; display: grid; gap: 1rem; }

/* Prompt row */
.d-prompt {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--sunken); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.7rem 0.9rem;
}
.d-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em;
  color: var(--ink-faint); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 0.15rem 0.55rem; flex: none;
}
.d-input { margin: 0; flex: 1; min-width: 0; font-family: var(--font-mono); font-size: 0.84rem; color: var(--ink-muted); white-space: nowrap; overflow: hidden; }
.d-caret {
  display: inline-block; width: 2px; height: 0.95em; margin-left: 2px;
  background: var(--accent); vertical-align: text-bottom;
  animation: caret 900ms step-end infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.d-forge {
  flex: none; font-size: 0.8rem; font-weight: 600;
  color: var(--ink-faint); border: 1px solid var(--line-strong);
  border-radius: var(--r-pill); padding: 0.3rem 0.85rem;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.d-forge.fire { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); box-shadow: 0 0 18px var(--accent-glow); }

/* Stage rail */
.d-stages {
  display: grid; grid-template-columns: 1fr 26px 1fr 26px 1fr;
  gap: 0; align-items: stretch;
}
.d-stage {
  background: var(--sunken); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.8rem 0.9rem;
  display: grid; gap: 0.7rem; align-content: start;
  transition: border-color var(--dur-med) var(--ease-out);
}
.d-stage header { display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.d-stage h4 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; letter-spacing: -0.01em; }
.d-status { margin-left: auto; font-family: var(--font-mono); font-size: 0.66rem; color: var(--ink-faint); }
.d-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); flex: none; transition: background var(--dur-fast); }

.d-stage.active { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.d-stage.active .d-dot { background: var(--accent); animation: pulse 1.2s var(--ease-out) infinite; }
.d-stage.active .d-status { color: var(--accent-soft); }
.d-stage.done .d-dot { background: var(--ok); animation: none; }
.d-stage.done .d-status { color: var(--ok); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 6px transparent; } }

/* Skeleton lines: empty → shimmer (active) → filled (done) */
.d-lines { display: grid; gap: 6px; }
.d-lines i {
  display: block; height: 7px; border-radius: 4px;
  width: var(--w, 80%); background: var(--line);
  opacity: 0.45; transition: opacity var(--dur-med);
}
.d-stage.active .d-lines i {
  opacity: 1;
  background: linear-gradient(90deg, var(--line) 25%, var(--line-strong) 50%, var(--line) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s linear infinite;
}
.d-stage.done .d-lines i { opacity: 1; background: var(--line-strong); animation: none; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* R&D activity list */
.d-acts { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.d-acts li {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint);
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.d-acts li.show { opacity: 1; transform: none; }
.d-acts .ok { color: var(--ok); }

/* Hand-off links between stages */
.d-link { position: relative; }
.d-link::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: var(--line-strong);
}
.d-spark {
  position: absolute; top: 50%; left: 0;
  width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent-glow);
  opacity: 0;
}
.d-link.travel .d-spark { animation: travel 550ms var(--ease-out) forwards; }
@keyframes travel { 0% { opacity: 1; left: 0; } 100% { opacity: 0; left: calc(100% - 7px); } }

/* Output row */
.d-out {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--raised); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); padding: 0.75rem 0.9rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.d-out.show { opacity: 1; transform: none; }
.d-out svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.d-file { font-family: var(--font-mono); font-size: 0.84rem; color: var(--ink); }
.d-verified { margin-left: auto; font-family: var(--font-mono); font-size: 0.74rem; color: var(--ok); white-space: nowrap; }

/* ------------------------------ Sections ---------------------------------- */
.section { position: relative; padding: calc(var(--section-gap) / 2) 0; }
.section + .section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, calc(100% - 2 * var(--gutter))); height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.025em; line-height: 1.12;
  margin: 0 0 0.7rem;
}
.lead { color: var(--ink-muted); font-size: 1.05rem; margin: 0 0 2.2rem; max-width: 60ch; }
.body { color: var(--ink-muted); max-width: 58ch; margin: 0; }

/* How it works cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.25rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); }
.card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  letter-spacing: -0.01em; margin: 0.5rem 0 0.45rem;
}
.card p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }

/* Per-card micro visuals */
.mini {
  height: 56px; border-radius: var(--r-sm);
  background: var(--sunken); border: 1px solid var(--line);
  margin-bottom: 1rem; padding: 0.6rem 0.7rem;
  display: grid; align-content: center; gap: 6px; overflow: hidden;
}
.mini-build i {
  display: block; height: 6px; border-radius: 3px; background: var(--line);
  background: linear-gradient(90deg, var(--line) 25%, var(--line-strong) 50%, var(--line) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}
.mini-build i:nth-child(1) { width: 86%; }
.mini-build i:nth-child(2) { width: 64%; animation-delay: 150ms; }
.mini-build i:nth-child(3) { width: 75%; animation-delay: 300ms; }
.mini-rnd { align-items: center; }
.mini-rnd .chip {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-muted);
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 0.3rem 0.7rem; justify-self: start;
}
.mini-rnd .chip b { color: var(--ok); font-weight: 500; animation: tick 2.4s var(--ease-out) infinite; }
@keyframes tick { 0%, 20% { opacity: 0.2; } 45%, 100% { opacity: 1; } }
.mini-report { grid-auto-flow: column; justify-content: center; gap: 5px; align-items: center; }
.mini-report .page { width: 18px; height: 26px; border-radius: 3px; border: 1px solid var(--line-strong); background: var(--surface); opacity: 0.45; }
.mini-report .page.main { width: 22px; height: 32px; opacity: 1; border-color: var(--accent); box-shadow: 0 0 12px -4px var(--accent-glow); }

/* Seal strip (no hex, just the contract) */
.chain {
  margin-top: 1.6rem;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md); padding: 1.1rem 1.4rem;
  overflow-x: auto;
}
.chain code {
  display: flex; align-items: center; gap: 1rem; white-space: nowrap;
  font-family: var(--font-mono); font-size: 0.84rem; color: var(--ink-muted);
}
.c-seal { color: var(--ink-faint); font-size: 0.76rem; margin-left: 0.35rem; }
.c-seal.ok-strong, .ok-strong { color: var(--ok); }
.c-arrow { color: var(--accent); }

/* Integrity split + receipt */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.receipt {
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); box-shadow: var(--shadow-card); overflow: hidden;
}
.r-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint);
  background: var(--raised);
}
.r-ok { color: var(--ok); }
.r-row {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.r-row:last-child { border-bottom: 0; }
.r-row > span { font-weight: 600; flex: none; width: 5.2rem; }
.r-row p { margin: 0; color: var(--ink-muted); font-size: 0.88rem; flex: 1; }
.r-tick { color: var(--ink-faint); font-weight: 500; flex: none; }
.r-tick.ok-strong { color: var(--ok); }

/* Pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 760px; }
.plan {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.plan.featured { border-color: var(--accent); box-shadow: 0 0 32px -12px var(--accent-glow); }
.tag {
  position: absolute; top: -0.7rem; left: 1.4rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--accent-ink); background: var(--accent);
  border-radius: var(--r-pill); padding: 0.2rem 0.65rem;
}
.plan h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--ink-muted); }
.price { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.price s { color: var(--ink-faint); font-size: 1.1rem; font-weight: 500; margin-left: 0.5rem; }
.plan ul { list-style: none; padding: 0; margin: 0.4rem 0 1.2rem; color: var(--ink-muted); font-size: 0.93rem; display: grid; gap: 0.4rem; }
.plan ul li::before { content: "✓"; color: var(--ok); margin-right: 0.55rem; }
.plan .btn { margin-top: auto; border-radius: var(--r-sm); }

/* FAQ */
.faqs { display: grid; gap: 0.6rem; }
details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0 1.1rem;
  transition: border-color var(--dur-fast) var(--ease-out);
}
details[open] { border-color: var(--line-strong); }
summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 0.98rem;
  padding: 1rem 0; position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  color: var(--ink-faint); font-family: var(--font-mono); font-size: 1rem;
}
details[open] summary::after { content: "–"; color: var(--accent); }
details p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; padding: 0 0 1.1rem; max-width: 60ch; }

/* Closer */
.closer { text-align: center; padding-bottom: var(--section-gap); }
.closer h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
.closer-actions { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 2rem 0; }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer nav a {
  color: var(--ink-faint); font-size: 0.88rem;
  background: linear-gradient(currentColor 0 0) no-repeat left bottom / 0% 1px;
  padding-bottom: 2px;
  transition: color var(--dur-fast), background-size var(--dur-med) var(--ease-out);
}
.footer nav a:hover { color: var(--ink); background-size: 100% 1px; }

/* ------------------------------ Reveals ----------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(16px); }
[data-reveal].in {
  opacity: 1; transform: none;
  transition: opacity var(--dur-slow) var(--ease-out) var(--d, 0ms),
    transform var(--dur-slow) var(--ease-out) var(--d, 0ms);
}

/* --------------------------- Reduced motion -------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lo, [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; transition: none !important; }
  .btn, .card, .copy { transition: none; }
  .mini-build i, .mini-rnd .chip b, .d-caret { animation: none; }
  .d-stage.active .d-lines i { animation: none; background: var(--line-strong); }
}

/* ----------------------------- Responsive --------------------------------- */
@media (max-width: 880px) {
  .links { display: none; }
  .brand-name { display: inline; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .plans { grid-template-columns: 1fr; }
  .d-stages { grid-template-columns: 1fr; gap: 10px; }
  .d-link { height: 22px; }
  .d-link::before { left: 50%; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .d-link.travel .d-spark { animation-name: travel-v; left: 50%; margin-left: -3.5px; }
  @keyframes travel-v { 0% { opacity: 1; top: 0; } 100% { opacity: 0; top: calc(100% - 7px); } }
}
@media (max-width: 560px) {
  .t-body { flex-direction: column; align-items: stretch; }
  .copy { justify-content: center; }
  .nav { top: 10px; }
  .nav-pill { width: 100%; justify-content: space-between; padding-left: 14px; }
  .d-prompt { flex-wrap: wrap; }
  .d-input { flex-basis: 100%; order: 3; white-space: normal; }
  .hero { padding-top: 6.5rem; }
}
