/* Hero + app showcase with real Studybo screenshots */

.studybo-hero-screens,
.studybo-app-showcase {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(10, 14, 26, 0.5);
  background: linear-gradient(145deg, #4338CA 0%, #4F46E5 35%, #0F766E 100%);
}

.studybo-hero-screens {
  position: relative;
}

.studybo-hero-screens__fs-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.625rem;
  background: rgba(10, 14, 26, 0.45);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.studybo-hero-screens__fs-btn:hover {
  background: rgba(10, 14, 26, 0.65);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.studybo-hero-screens__fs-btn[hidden] {
  display: none;
}

.studybo-hero-screens__inner,
.studybo-app-showcase__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .studybo-hero-screens__inner {
    flex-direction: row;
    align-items: center;
    padding: 2rem 2.25rem;
    gap: 2.5rem;
  }

  .studybo-app-showcase__inner {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 1.75rem;
    gap: 1.75rem;
  }
}

.studybo-hero-screens__copy,
.studybo-app-showcase__copy {
  flex: 1;
  min-width: 0;
  color: #fff;
}

.studybo-hero-screens__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.studybo-hero-screens__screen-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.25;
}

.studybo-hero-screens__screen-body,
.studybo-app-showcase__screen-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 0;
  max-width: 34rem;
}

.studybo-app-showcase__screen-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  color: #fff;
}

/* Timer controls — left column, not on phone */
.studybo-hero-screens__controls {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: rgba(10, 14, 26, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.studybo-hero-screens__controls.is-hidden {
  display: none;
}

.studybo-hero-screens__controls-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.65rem;
}

.studybo-hero-screens__controls-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.studybo-hero-screens__controls-row:not(.is-session-active) .studybo-hero-screens__overlay-start {
  flex: 1;
  min-width: 8rem;
  text-align: center;
}

.studybo-hero-screens__session-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.studybo-hero-screens__session-actions[hidden] {
  display: none;
}

.studybo-hero-screens__session-actions.is-visible {
  animation: hero-session-actions-in 0.28s ease-out;
}

@keyframes hero-session-actions-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .studybo-hero-screens__session-actions.is-visible {
    animation: none;
  }
}

.studybo-hero-screens__controls-field {
  flex: 1;
  min-width: 7rem;
}

.studybo-hero-screens__duration-select {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 14, 26, 0.55);
  color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='white'%3E%3Cpath d='M2 4l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  cursor: pointer;
}

.studybo-hero-screens__overlay-start {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border: none;
  border-radius: 9999px;
  background: #14B8A6;
  color: #0A0E1A;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.32);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.studybo-hero-screens__overlay-start:hover {
  background: #2DD4BF;
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.42);
  transform: translateY(-1px);
}

.studybo-hero-screens__controls-row.is-session-active .studybo-hero-screens__overlay-start {
  box-shadow: none;
}

.studybo-hero-screens__btn-done {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 9999px;
  background: rgba(10, 14, 26, 0.45);
  color: #14B8A6;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.studybo-hero-screens__btn-done:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.55);
}

.studybo-hero-screens__btn-break {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  background: rgba(10, 14, 26, 0.45);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.studybo-hero-screens__btn-break:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.studybo-hero-screens__btn-break:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.studybo-hero-screens__controls-hint {
  font-size: 0.75rem;
  line-height: 1.45;
  opacity: 0.62;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.studybo-hero-screens__device-col,
.studybo-app-showcase__device-col {
  flex-shrink: 0;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .studybo-hero-screens__device-col {
    width: 280px;
    max-width: none;
    margin-inline: 0;
  }

  .studybo-app-showcase__device-col {
    width: 240px;
    max-width: none;
    margin-inline: 0;
  }
}

/* Aurora focus timer (hero) */
.studybo-hero-aurora-host {
  width: 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.studybo-aurora-timer {
  position: relative;
  width: min(100%, 240px);
  aspect-ratio: 1;
  min-width: 200px;
  border-radius: 1.5rem;
  background: radial-gradient(ellipse at center, #0F1420 0%, #0A0E17 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s ease;
  container-type: inline-size;
}

.studybo-aurora-timer.is-running {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Idle — simple static ring */
.studybo-aurora-timer.is-idle {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.studybo-aurora-timer.is-idle .studybo-aurora-timer__status {
  color: #7A8F99;
  letter-spacing: 0.1em;
}

/* Complete — celebration glow */
.studybo-aurora-timer.is-complete {
  animation: studybo-complete-pulse 2.4s ease-in-out infinite;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(247, 201, 72, 0.35),
    0 0 100px rgba(0, 200, 151, 0.2);
}

.studybo-aurora-timer.is-complete .studybo-aurora-timer__time,
.studybo-aurora-timer.is-complete .studybo-aurora-timer__status {
  color: #F7C948;
  animation: none;
}

.studybo-aurora-timer.is-complete .studybo-aurora-timer__session {
  color: #B0C4CE;
}

@keyframes studybo-complete-pulse {
  0%, 100% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.45),
      0 0 48px rgba(247, 201, 72, 0.28),
      0 0 80px rgba(0, 200, 151, 0.15);
  }
  50% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.45),
      0 0 72px rgba(247, 201, 72, 0.45),
      0 0 120px rgba(0, 200, 151, 0.25);
  }
}

/* Fullscreen focus stage */
.studybo-hero-fs-stage {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0A0E17;
}

.studybo-hero-fs-stage:fullscreen,
.studybo-hero-fs-stage:-webkit-full-screen {
  display: flex;
}

.studybo-hero-fs-stage__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vmin, 3.5rem);
  width: 100%;
  flex: 1;
  padding: clamp(1.5rem, 4vmin, 3rem);
}

.studybo-hero-fs-stage__mount {
  position: relative;
  flex: 1 1 auto;
  width: min(92vmin, calc(100vw - 2.5rem), calc(100dvh - 14rem));
  height: min(92vmin, calc(100vw - 2.5rem), calc(100dvh - 14rem));
  max-width: 720px;
  max-height: 720px;
  aspect-ratio: 1;
  overflow: visible;
}

/* Fullscreen timer — plain, no card; ring fills the space */
.studybo-hero-fs-stage__mount .studybo-aurora-timer,
.studybo-aurora-timer.is-fs {
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  animation: none !important;
  container-type: size;
  overflow: visible;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__svg {
  overflow: visible;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__svg circle {
  stroke-width: 22;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__center,
.studybo-aurora-timer.is-fs .studybo-aurora-timer__center {
  position: absolute;
  z-index: 2;
  /* inset ~ stroke + inner padding so text sits inside the ring */
  inset: 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 3cqi, 1.25rem);
  text-align: center;
  pointer-events: none;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__time,
.studybo-aurora-timer.is-fs .studybo-aurora-timer__time {
  font-size: clamp(2rem, 22cqi, 5.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__status,
.studybo-aurora-timer.is-fs .studybo-aurora-timer__status {
  font-size: clamp(0.6875rem, 5.5cqi, 1.125rem);
  margin-top: clamp(0.5rem, 4cqi, 1.25rem);
  letter-spacing: 0.16em;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__session,
.studybo-aurora-timer.is-fs .studybo-aurora-timer__session {
  font-size: clamp(0.625rem, 4.5cqi, 0.9375rem);
  margin-top: clamp(0.25rem, 2cqi, 0.625rem);
}

.studybo-hero-fs-stage__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: min(92vmin, 720px);
  padding-inline: 0.25rem;
}

.studybo-hero-fs-stage__field {
  flex: 1 1 7rem;
  min-width: 7rem;
}

.studybo-hero-fs-stage__duration {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #E8F4F8;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='white'%3E%3Cpath d='M2 4l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
}

.studybo-hero-fs-stage__duration:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.studybo-hero-fs-stage__btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.studybo-hero-fs-stage__btn--primary {
  border: none;
  background: #14B8A6;
  color: #0A0E1A;
}

.studybo-hero-fs-stage__btn--primary:hover {
  background: #2DD4BF;
}

.studybo-hero-fs-stage__btn--break {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.studybo-hero-fs-stage__btn--break:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.studybo-hero-fs-stage__btn--break:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.studybo-hero-fs-stage__btn--done {
  border: 1px solid rgba(20, 184, 166, 0.35);
  background: transparent;
  color: #14B8A6;
}

.studybo-hero-fs-stage__btn--done:hover {
  background: rgba(20, 184, 166, 0.12);
}

.studybo-hero-fs-stage__exit {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.studybo-hero-fs-stage__exit:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.studybo-aurora-timer__ring-wrap {
  position: absolute;
  inset: clamp(0.75rem, 5cqi, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.studybo-hero-fs-stage__mount .studybo-aurora-timer__ring-wrap,
.studybo-aurora-timer.is-fs .studybo-aurora-timer__ring-wrap {
  /* Room for thicker FS stroke + round line caps (SVG viewBox fits 16px stroke) */
  inset: clamp(0.375rem, 2.75%, 1rem);
}

.studybo-aurora-timer__svg {
  width: 100%;
  height: 100%;
}

.studybo-aurora-timer__progress {
  transition: opacity 0.35s ease;
}

.studybo-aurora-timer.is-idle .studybo-aurora-timer__progress {
  opacity: 0;
}

.studybo-aurora-timer.is-idle .studybo-aurora-timer__idle-arc {
  opacity: 1;
}

.studybo-aurora-timer:not(.is-idle) .studybo-aurora-timer__idle-arc {
  opacity: 0;
}

.studybo-aurora-timer.is-active .studybo-aurora-timer__progress,
.studybo-aurora-timer.is-complete .studybo-aurora-timer__progress {
  opacity: 1;
}

.studybo-aurora-timer__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem;
  pointer-events: none;
}

.studybo-aurora-timer__time {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.75rem, 8cqi, 2.5rem);
  font-weight: 700;
  color: #E8F4F8;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.studybo-aurora-timer__status {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B0C4CE;
}

.studybo-aurora-timer__session {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #7A8F99;
}

.studybo-aurora-timer.is-paused .studybo-aurora-timer__time,
.studybo-aurora-timer.is-paused .studybo-aurora-timer__status {
  color: #FFD54F;
  animation: studybo-aurora-blink 550ms step-end infinite;
}

@keyframes studybo-aurora-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.studybo-hero-screens__select-row,
.studybo-app-showcase__select-row {
  margin-bottom: 0.65rem;
}

.studybo-hero-screens__select,
.studybo-app-showcase__select {
  width: 100%;
  appearance: none;
  background: rgba(10, 14, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 2rem 0.5rem 0.85rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='white'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.studybo-app-showcase__phone {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #0A0E1A;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  aspect-ratio: 9 / 19.5;
}

.studybo-app-showcase__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.studybo-hero-screens__controls-done {
  font-size: 0.8125rem;
  margin-top: 0.65rem;
  margin-bottom: 0;
  color: #A7F3D0;
}

.studybo-hero-screens__controls-done a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.studybo-hero-screens__controls-done[hidden] {
  display: none;
}

/* Mid-article showcase (dark card) */
.studybo-app-showcase {
  margin: 2rem 0;
  background: #0A0E1A;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.studybo-app-showcase__inner {
  padding: 1.25rem;
}

.studybo-app-showcase__copy {
  color: #e2e8f0;
}

.studybo-app-showcase__select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.studybo-app-showcase__device-wrap {
  width: 100%;
}

.studybo-app-showcase__screen-picker {
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.studybo-app-showcase__picker-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

.studybo-app-showcase__select--picker {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 2rem 0.55rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(20, 184, 166, 0.35);
  background: rgba(10, 14, 26, 0.65);
  color: #fff;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='%2314B8A6'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.studybo-app-showcase__select--picker:hover {
  border-color: rgba(20, 184, 166, 0.55);
  background-color: rgba(10, 14, 26, 0.85);
}

.studybo-app-showcase__picker-hint {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.45rem 0 0;
  line-height: 1.35;
}

.studybo-app-showcase__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.studybo-app-showcase__bullets li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.studybo-app-showcase__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #14B8A6;
}

.studybo-app-showcase__cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #14B8A6;
  text-decoration: none;
}

.studybo-app-showcase__cta:hover {
  text-decoration: underline;
}

/* Step callouts with real screenshots */
.studybo-step-callout__img-wrap {
  flex-shrink: 0;
  width: 130px;
  margin: 0 auto;
}

.studybo-step-callout__img-wrap img {
  width: 100%;
  border-radius: 1rem;
  border: 2px solid rgba(20, 184, 166, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: block;
}

@media (min-width: 640px) {
  .studybo-step-callout__img-wrap { width: 140px; margin: 0; }
}

.studybo-step-callout--done .studybo-step-callout__img-wrap {
  width: 160px;
}

@keyframes studybo-focus-flash {
  0% { opacity: 0; }
  25% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes studybo-copy-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .studybo-aurora-timer.is-paused .studybo-aurora-timer__time,
  .studybo-aurora-timer.is-paused .studybo-aurora-timer__status {
    animation: none !important;
  }

  .studybo-aurora-timer.is-complete {
    animation: none !important;
  }
}

/* Step checklist (always checked) */
.studybo-step-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  counter-reset: studybo-step;
}

.studybo-step-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.studybo-step-item:last-child {
  border-bottom: none;
}

.studybo-step-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.4rem;
  border: 2px solid #14B8A6;
  background: #14B8A6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.studybo-step-check svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  opacity: 1;
}

.studybo-step-body {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.55;
}

/* Step callouts — screenshot beside text */
.studybo-step-callout {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(20, 184, 166, 0.08) 100%);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.studybo-step-callout__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .studybo-step-callout__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

.studybo-step-callout__text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
}
