:root {
  --bg: #0b0e13;
  --bg-soft: #10141b;
  --panel: #141922;
  --panel-2: #171d27;
  --border: rgba(151, 166, 195, 0.14);
  --border-blue: rgba(36, 104, 231, 0.35);
  --text: #f4f7fd;
  --muted: #98a4b8;
  --muted-2: #6f7a8c;
  --blue: #2468e7;
  --blue-light: #4f8cff;
  --green: #3bd28f;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(36, 104, 231, 0.12), transparent 42%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

code {
  padding: .15em .4em;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #0e1218;
  color: #c6d7ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .9em;
}

.container {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.ambient {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: .075;
  background: var(--blue);
}

.ambient-one {
  top: 140px;
  right: -250px;
}

.ambient-two {
  top: 900px;
  left: -320px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 19, 0.74);
  border-bottom: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -.025em;
}

.brand img {
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #a2adbf;
  font-size: 14px;
  font-weight: 550;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 690;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
  border-radius: 10px;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  box-shadow: 0 12px 35px rgba(36, 104, 231, .28);
}

.button-primary:hover {
  box-shadow: 0 16px 42px rgba(36, 104, 231, .38);
}

.button-secondary,
.button-ghost {
  color: #dce4f4;
  border-color: var(--border);
  background: rgba(255,255,255,.03);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.hero {
  padding-top: 100px;
  min-height: 790px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  margin-bottom: 22px;
  border: 1px solid rgba(36, 104, 231, .22);
  border-radius: 999px;
  background: rgba(36, 104, 231, .075);
  color: #afc8ff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .01em;
}

.eyebrow.simple {
  padding: 0;
  margin-bottom: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #719cf5;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(59, 210, 143, .55);
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(46px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 790;
}

.hero h1 span {
  color: #8fa9d9;
}

.hero-lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted-2);
  font-size: 12px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4f5b6d;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(100px);
  opacity: .18;
}

.app-window {
  position: relative;
  z-index: 2;
  width: min(430px, 92%);
  overflow: hidden;
  border: 1px solid rgba(121, 145, 188, .2);
  border-radius: 22px;
  background: #11151c;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, .52),
    0 0 0 1px rgba(255, 255, 255, .018) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform .22s ease-out;
  will-change: transform;
}

.app-titlebar {
  height: 43px;
  padding: 0 11px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #151a22;
}

.app-brand-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6ebf6;
  font-size: 11px;
  font-weight: 650;
}

.app-brand-mini img {
  width: 20px;
  height: 20px;
}

.window-controls {
  display: flex;
  align-items: center;
  color: #9ba5b5;
}

.window-controls span {
  width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.app-content {
  padding: 28px 30px 22px;
  text-align: center;
}

.floating-logo {
  height: 105px;
  display: grid;
  place-items: center;
}

.floating-logo img {
  width: 92px;
  animation: logoFloat 3.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes logoFloat {
  0%, 100% { transform: translate3d(0, 3px, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}

.app-content h2 {
  margin: 5px 0 4px;
  font-size: 26px;
  letter-spacing: -.035em;
}

.app-content > p {
  margin: 0;
  color: #7e899c;
  font-size: 11px;
}

.instance-card {
  margin-top: 23px;
  padding: 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 145, 174, .15);
  border-radius: 15px;
  background: #171c25;
}

.instance-card span {
  color: #8f9bad;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
}

.instance-card strong {
  margin-top: 2px;
  color: var(--blue-light);
  font-size: 38px;
  line-height: 1.15;
}

.mini-how {
  margin-top: 21px;
  text-align: left;
}

.mini-how strong {
  font-size: 12px;
}

.mini-how p {
  margin: 8px 0 0;
  color: #8e99aa;
  font-size: 10px;
  line-height: 1.65;
}

.running {
  margin-top: 19px;
  color: #748095;
  font-size: 9px;
}

.running i,
.session-pill i,
.farm-row i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(59,210,143,.35);
}

.session-pill {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(145, 164, 196, .16);
  border-radius: 13px;
  background: rgba(20, 25, 34, .9);
  box-shadow: 0 15px 45px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
  color: #dbe3f0;
  font-size: 12px;
  font-weight: 650;
}

.pill-one {
  left: 1%;
  bottom: 118px;
  animation: pillFloatA 4.8s ease-in-out infinite;
}

.pill-two {
  right: 0;
  top: 120px;
  animation: pillFloatB 5.4s ease-in-out infinite;
}

@keyframes pillFloatA {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-8px,0); }
}

@keyframes pillFloatB {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,7px,0); }
}

.trust-strip {
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(255,255,255,.015);
}

.trust-grid {
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 2px 34px;
  border-right: 1px solid rgba(255,255,255,.065);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  color: #e6ebf5;
  font-size: 13px;
}

.trust-grid span {
  color: #7e899c;
  font-size: 12px;
  line-height: 1.55;
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.workflow-copy h2,
.farmer-card h2,
.download-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.workflow-copy > p,
.farmer-card > div > p,
.download-panel > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.027), transparent 44%),
    var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36,104,231,.28);
  background:
    linear-gradient(145deg, rgba(36,104,231,.055), transparent 50%),
    var(--panel);
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(36,104,231,.24);
  border-radius: 12px;
  background: rgba(36,104,231,.08);
  color: #79a4ff;
}

.feature-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 12px 0 0;
  color: #8995a8;
  font-size: 13px;
  line-height: 1.72;
}

.workflow-section {
  background:
    radial-gradient(circle at 74% 47%, rgba(36,104,231,.075), transparent 31%);
}

.workflow-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.steps {
  margin-top: 38px;
  display: grid;
  gap: 8px;
}

.step {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.step > span {
  color: #567bc5;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
}

.step strong {
  display: block;
  font-size: 14px;
}

.step p {
  margin: 7px 0 0;
  color: #8793a6;
  font-size: 12.5px;
  line-height: 1.65;
}

.workflow-art img {
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.farmer-section {
  padding-top: 25px;
}

.farmer-card {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid rgba(36,104,231,.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 20%, rgba(36,104,231,.16), transparent 36%),
    #121720;
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.farm-stack {
  display: grid;
  gap: 10px;
}

.farm-row {
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(9,12,17,.48);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: transform .2s ease, border-color .2s ease;
}

.farm-row:hover {
  transform: translateX(-5px);
  border-color: rgba(36,104,231,.3);
}

.farm-row span {
  color: #dce4f2;
  font-size: 13px;
  font-weight: 600;
}

.farm-row b {
  color: #7f8b9f;
  font-size: 11px;
  font-weight: 600;
}

.download-panel {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  padding: 65px 70px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(36,104,231,.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% -10%, rgba(36,104,231,.18), transparent 42%),
    #11161e;
  box-shadow: var(--shadow);
}

.download-panel::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--blue);
  filter: blur(80px);
  opacity: .15;
}

.download-logo {
  position: relative;
  width: 86px;
  margin: 0 auto 20px;
  animation: logoFloat 4s ease-in-out infinite;
}

.download-options {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.download-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36,104,231,.35);
  background: rgba(36,104,231,.055);
}

.primary-download {
  border-color: rgba(36,104,231,.28);
}

.download-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #80a9ff;
  background: rgba(36,104,231,.11);
}

.download-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-card small,
.download-card strong,
.download-card em {
  display: block;
  font-style: normal;
}

.download-card small {
  margin-bottom: 2px;
  color: #668ddf;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 750;
}

.download-card strong {
  color: #eef3fb;
  font-size: 14px;
}

.download-card em {
  margin-top: 4px;
  color: #788497;
  font-size: 10px;
}

.download-card > b {
  color: #77869d;
  font-size: 18px;
  transition: transform .2s ease, color .2s ease;
}

.download-card:hover > b {
  transform: translateX(3px);
  color: #a9c2f8;
}

.requirements {
  max-width: 650px;
  margin: 25px auto 0 !important;
  color: #687488 !important;
  font-size: 11px !important;
}

.faq-section {
  padding-top: 30px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  list-style: none;
  color: #e6ebf4;
  font-size: 14px;
  font-weight: 650;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: #738096;
  font-size: 23px;
  font-weight: 300;
  transition: transform .2s ease, color .2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  color: #77a1f6;
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 24px;
  color: #8793a6;
  font-size: 12.5px;
  line-height: 1.7;
}

footer {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.065);
  background: #090c10;
}

.footer-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  font-size: 15px;
}

.footer-inner p {
  max-width: 670px;
  margin: 0;
  color: #657084;
  font-size: 10.5px;
  line-height: 1.65;
}

.back-top {
  color: #778397;
  font-size: 11px;
  font-weight: 600;
}

.back-top:hover {
  color: #b9c4d7;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .10s;
}

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 76px;
  }

  .hero-grid,
  .workflow-grid,
  .farmer-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .workflow-grid {
    gap: 50px;
  }

  .farmer-card {
    gap: 40px;
  }

  .faq-layout {
    gap: 45px;
  }

  .section-heading.left {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 78px 0;
  }

  .nav-wrap {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-wrap .button-small {
    margin-left: auto;
  }

  .hero {
    min-height: unset;
    padding-top: 68px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    gap: 12px;
  }

  .hero-visual {
    min-height: 485px;
  }

  .app-window {
    width: 94%;
    transform: none !important;
  }

  .session-pill {
    font-size: 10px;
  }

  .pill-one {
    left: -2%;
    bottom: 60px;
  }

  .pill-two {
    right: -2%;
    top: 70px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.065);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .farmer-card,
  .download-panel {
    padding: 38px 24px;
    border-radius: 22px;
  }

  .download-options {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 32px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Real screenshot section */
.workflow-shot .shot-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36,104,231,.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(36,104,231,.12), transparent 36%),
    #0f1319;
  box-shadow: var(--shadow);
}

.workflow-shot .shot-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(circle at 80% 15%, rgba(36,104,231,.18), transparent 28%);
  opacity: .85;
}

.workflow-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 30px;
}

.shot-badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: 10px 13px;
  border: 1px solid rgba(145, 164, 196, .18);
  border-radius: 999px;
  background: rgba(16, 21, 29, .88);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #e6edf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
}

@media (max-width: 720px) {
  .workflow-shot .shot-wrap,
  .workflow-shot img {
    border-radius: 22px;
  }

  .shot-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
    font-size: 11px;
  }
}
