/* Realtime Teach — landing page
   Direction: an engineered "spec sheet". Deep teal-ink, brass-amber as the
   single accent (certification reads gold, not green), JetBrains Mono for the
   machine-readable texture. */

:root {
  --ink:      #0a1116;
  --ink-1:    #0c141b;
  --panel:    #111a22;
  --panel-2:  #16212b;
  --code:     #0b1219;
  --line:     #1e2a36;
  --line-2:   #2a3a49;

  --fg:       #eaf0f6;
  --fg-dim:   #b7c2cf;
  --muted:    #7f8d9d;
  --muted-2:  #566473;

  --amber:      #f5b13d;
  --amber-hi:   #ffcd82;
  --amber-deep: #c6871f;
  --amber-soft: rgba(245, 177, 61, 0.12);
  --amber-line: rgba(245, 177, 61, 0.34);
  --rec:        #ff5c57;

  --radius:   14px;
  --radius-s: 9px;
  --wrap:     1080px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo", var(--sans);
  --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--amber); color: #1a1204; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: #1a1204;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- shared type devices ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--amber-line);
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; }

.mono { font-family: var(--mono); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 62px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
}
.brand .mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(150deg, var(--amber), var(--amber-deep));
  box-shadow: 0 0 0 1px var(--amber-line), 0 4px 14px rgba(245, 177, 61, 0.28);
  position: relative;
  flex: none;
}
.brand .mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  border: 1.5px solid rgba(20, 14, 3, 0.72);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
}
.nav a { transition: color 0.15s ease; }
.nav a:hover { color: var(--fg); }
.nav .nav-cta {
  color: var(--amber);
  border: 1px solid var(--amber-line);
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav .nav-cta:hover { background: var(--amber); color: #1a1204; }
@media (max-width: 720px) {
  .nav .nav-link { display: none; }
}

/* ---------- buttons + command block ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-s);
  padding: 0.7rem 1.15rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn--amber {
  background: linear-gradient(180deg, var(--amber-hi), var(--amber));
  color: #1a1204;
  box-shadow: 0 8px 24px rgba(245, 177, 61, 0.2);
}
.btn--amber:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--muted); transform: translateY(-2px); }

.cmd {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--code);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-s);
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  font-family: var(--mono);
  font-size: 0.83rem;
  max-width: 560px;
}
.cmd .prompt { color: var(--amber); user-select: none; }
.cmd code {
  color: var(--fg);
  overflow-x: auto;
  white-space: nowrap;
  flex: 1;
  scrollbar-width: none;
}
.cmd code::-webkit-scrollbar { display: none; }
.cmd .copy {
  flex: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.cmd .copy:hover { color: var(--amber); border-color: var(--amber-line); }
.cmd .copy.copied { color: var(--amber); border-color: var(--amber-line); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 62%);
          mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -160px; top: -220px;
  background: radial-gradient(circle, rgba(245, 177, 61, 0.14), transparent 62%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.2rem);
  margin: 0 0 1.25rem;
}
.hero h1 .turn { color: var(--amber); }
.hero .lede {
  color: var(--fg-dim);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  max-width: 34em;
  margin: 0 0 2rem;
}
.hero .lede strong { color: var(--fg); font-weight: 600; }
.install-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
}
.then { color: var(--muted); font-size: 0.92rem; margin: 0.85rem 0 0; }
.then code { font-family: var(--mono); color: var(--amber); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.9rem;
}
.chip {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--fg-dim);
  border: 1px solid var(--line-2);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ---------- signature: certification card ---------- */

.cert {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.cert::before,
.cert::after {
  content: "+";
  position: absolute;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 0.9rem;
  line-height: 1;
}
.cert::before { top: 8px; left: 9px; }
.cert::after { bottom: 8px; right: 9px; }
.cert-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--line-2);
}
.cert-head .slug { font-family: var(--mono); font-size: 0.9rem; }
.cert-head .slug b { color: var(--amber); font-weight: 700; }
.cert-head .slug span { color: var(--muted); }
.status {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-line);
  background: var(--amber-soft);
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
}
.cert-intent {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.9;
  margin: 1rem 0 0.35rem;
  word-break: break-word;
}
.cert-intent .arrow { color: var(--amber-deep); }
.cert-intent .q { color: var(--fg); }
.cert-note { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); margin: 0 0 1.1rem; }

.trials { display: flex; align-items: center; gap: 0.7rem; margin: 1rem 0 0.55rem; }
.trials .tlabel { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.tdots { display: flex; gap: 0.4rem; }
.tdot {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: transparent;
  animation: fill 0.4s ease forwards;
}
.tdot:nth-child(1) { animation-delay: 0.35s; }
.tdot:nth-child(2) { animation-delay: 0.55s; }
.tdot:nth-child(3) { animation-delay: 0.75s; }
.tdot:nth-child(4) { animation-delay: 0.95s; }
.tdot:nth-child(5) { animation-delay: 1.15s; }
@keyframes fill {
  to {
    background: var(--amber);
    border-color: var(--amber);
    box-shadow: 0 0 10px rgba(245, 177, 61, 0.5);
  }
}
.trace { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); margin: 0 0 1.15rem; }
.trace b { color: var(--fg-dim); font-weight: 500; }

.stamp {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--amber-line);
  background: var(--amber-soft);
  border-radius: var(--radius-s);
  padding: 0.75rem 0.9rem;
  opacity: 0;
  animation: stampin 0.5s ease 1.5s forwards;
}
@keyframes stampin { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.stamp .seal {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: #1a1204;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex: none;
}
.stamp .txt { font-family: var(--mono); font-size: 0.78rem; line-height: 1.4; }
.stamp .txt b { color: var(--amber-hi); letter-spacing: 0.08em; }
.stamp .txt span { color: var(--muted); }

/* ---------- section scaffold ---------- */

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt { background: var(--ink-1); border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: 0 0 0.9rem; }
.section-head p { color: var(--fg-dim); font-size: 1.06rem; margin: 0; }

/* ---------- problem band ---------- */

.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cc {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  background: var(--panel);
}
.cc.bad { background: var(--ink); }
.cc .tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.cc.bad .tag { color: var(--rec); }
.cc.good .tag { color: var(--amber); }
.cc .tag .d { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.cc h3 { font-size: 1.2rem; margin: 0 0 0.6rem; letter-spacing: -0.01em; }
.cc p { color: var(--fg-dim); margin: 0; font-size: 0.98rem; }
.cc.good { border-color: var(--amber-line); box-shadow: 0 0 0 1px rgba(245, 177, 61, 0.06) inset; }

/* ---------- artifact / skill.md ---------- */

.artifact { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; }
.artifact .prose p { color: var(--fg-dim); }
.artifact .prose p code, .prose code { font-family: var(--mono); font-size: 0.88em; color: var(--amber-hi); background: var(--amber-soft); padding: 0.05em 0.35em; border-radius: 4px; }
.artifact ul { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.artifact ul li { position: relative; padding-left: 1.5rem; margin: 0.7rem 0; color: var(--fg-dim); }
.artifact ul li::before { content: "→"; position: absolute; left: 0; color: var(--amber); font-family: var(--mono); }
.artifact ul li b { color: var(--fg); font-weight: 600; }

.codecard {
  background: var(--code);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.75);
}
.codecard .bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.codecard .bar .fn { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); margin-left: 0.35rem; }
.codecard .bar .stat { margin-left: auto; font-family: var(--mono); font-size: 0.68rem; color: var(--amber); letter-spacing: 0.1em; }
.tl { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.codecard pre {
  margin: 0;
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--fg-dim);
}
.codecard .c { color: var(--muted-2); }
.codecard .k { color: var(--amber); }
.codecard .s { color: #9fd0b6; }
.codecard .h { color: var(--fg); font-weight: 500; }

/* ---------- pipeline ---------- */

.pipeline { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stage {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.5rem;
  padding: 1.9rem clamp(1.25rem, 3vw, 2rem);
  background: var(--ink);
  transition: background 0.18s ease;
}
.section--alt .stage { background: var(--ink-1); }
.stage:hover { background: var(--panel); }
.stage .idx {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
}
.stage .idx .of { display: block; font-size: 0.64rem; font-weight: 500; letter-spacing: 0.16em; color: var(--muted-2); margin-top: 0.55rem; }
.stage .body h3 { font-size: 1.22rem; margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.stage .body h3 .kicker { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.4rem; font-weight: 500; }
.stage .body p { color: var(--fg-dim); margin: 0; font-size: 0.99rem; }
.stage .body p code { font-family: var(--mono); font-size: 0.86em; color: var(--amber-hi); }
.stage .body p b { color: var(--fg); font-weight: 600; }

/* ---------- cockpit ---------- */

.cockpit { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; }
.cockpit .prose p { color: var(--fg-dim); }
.controls { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.controls span {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--fg-dim);
  border: 1px solid var(--line-2);
  border-radius: 7px;
  padding: 0.34rem 0.7rem;
  background: var(--panel);
}
.controls span b { color: var(--amber); font-weight: 600; }

.filmstrip {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.1rem;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.75);
}
.frames { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.frame { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: var(--code); }
.frame .chrome { display: flex; align-items: center; gap: 4px; padding: 6px 8px; border-bottom: 1px solid var(--line); }
.frame .chrome i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.frame .chrome .url { margin-left: 6px; height: 5px; width: 60%; border-radius: 3px; background: var(--line-2); }
.frame .shot { padding: 10px; display: grid; gap: 6px; }
.frame .shot .ln { height: 5px; border-radius: 3px; background: var(--line-2); }
.frame .shot .ln.w1 { width: 85%; }
.frame .shot .ln.w2 { width: 55%; }
.frame .shot .ln.hit { background: var(--amber); box-shadow: 0 0 8px rgba(245, 177, 61, 0.5); width: 40%; }
.frame .cap { font-family: var(--mono); font-size: 0.64rem; color: var(--muted); padding: 0 8px 8px; }
.frame .cap b { color: var(--amber); }
.strip-foot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line-2);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.strip-foot .live { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--rec); }
.strip-foot .live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- local-first ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.feature {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  background: var(--panel);
}
.feature .ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--amber-soft);
  border: 1px solid var(--amber-line);
  color: var(--amber);
  margin-bottom: 0.9rem;
  font-family: var(--mono);
  font-size: 1rem;
}
.feature h3 { font-size: 1.06rem; margin: 0 0 0.45rem; letter-spacing: -0.01em; }
.feature p { color: var(--fg-dim); margin: 0; font-size: 0.94rem; }
.feature p code { font-family: var(--mono); font-size: 0.85em; color: var(--amber-hi); }

/* ---------- final CTA ---------- */

.cta {
  text-align: center;
  border: 1px solid var(--amber-line);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(245, 177, 61, 0.1), transparent 60%),
    var(--panel);
}
.cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0 0 0.8rem; }
.cta .req { color: var(--muted); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; margin: 0 0 1.9rem; }
.cta .cmd { margin: 0 auto; }
.cta .then { text-align: center; }
.cta .fine { color: var(--muted); font-size: 0.88rem; margin: 1.7rem auto 0; max-width: 34em; }

/* ---------- signup ---------- */

.signup { text-align: center; }
.signup h2 { font-size: 1.6rem; margin: 0 0 0.5rem; }
.signup p { color: var(--muted); margin: 0 0 1.4rem; }
.signup form { display: flex; gap: 0.55rem; max-width: 430px; margin: 0 auto; }
.signup input {
  flex: 1;
  padding: 0.72rem 0.95rem;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-2);
  background: var(--code);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.signup input::placeholder { color: var(--muted-2); }
.signup input:focus-visible { outline-offset: 0; border-color: var(--amber-line); }

/* ---------- footer ---------- */

footer { border-top: 1px solid var(--line); padding-block: 2.5rem 3rem; color: var(--muted); }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
footer .brand { color: var(--fg); }
footer .foot-links { margin-left: auto; display: flex; gap: 1.3rem; font-family: var(--mono); font-size: 0.82rem; }
footer .foot-links a:hover { color: var(--fg); }
footer .note { flex-basis: 100%; font-size: 0.82rem; color: var(--muted-2); }

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

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .cert { order: -1; }
  .artifact, .cockpit { grid-template-columns: 1fr; }
  .contrast, .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .frames { grid-template-columns: 1fr; }
  .frames .frame:nth-child(3) { display: none; }
  .stage { grid-template-columns: 1fr; gap: 0.5rem; }
  .stage .idx { display: flex; align-items: baseline; gap: 0.6rem; }
  .stage .idx .of { margin-top: 0; }
  .signup form { flex-direction: column; }
  .cmd { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-delay: 0ms !important; }
  .tdot { background: var(--amber); border-color: var(--amber); }
  .stamp { opacity: 1; }
  .strip-foot .live .d { animation: none; }
}
