:root {
  color-scheme: dark;
  --ink: #f6f0ff;
  --ink-soft: #c7c2d8;
  --muted: #938ca8;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #070812;
  --surface: rgba(15, 18, 34, 0.78);
  --surface-strong: rgba(22, 26, 48, 0.94);
  --cyan: #5ee7ff;
  --magenta: #ff4fd8;
  --gold: #f7b84b;
  --red: #ff5c6c;
  --green: #4ff0a5;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(94, 231, 255, 0.08), transparent 38%),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  align-items: center;
  background: rgba(7, 8, 18, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 18, 0.96);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
}

.brand img {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  height: 36px;
  object-fit: cover;
  object-position: center;
  width: 36px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 14px;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: var(--ink);
}

.nav-toggle {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-toggle span {
  background: currentColor;
  border-radius: 99px;
  display: block;
  height: 2px;
  width: 18px;
}

.hero {
  align-items: center;
  display: grid;
  min-height: min(780px, calc(100svh - 96px));
  overflow: hidden;
  padding: clamp(58px, 9vh, 110px) clamp(18px, 5vw, 72px);
  position: relative;
}

.hero::after,
.product-hero::before,
.policy-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
  position: absolute;
}

.hero-yunan {
  background:
    linear-gradient(115deg, rgba(7, 8, 18, 0.98), rgba(20, 18, 44, 0.86)),
    #070812;
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  margin-bottom: 22px;
  max-width: 1100px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  max-width: 720px;
}

.hero-actions,
.card-actions,
.policy-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  box-shadow: 0 16px 34px rgba(94, 231, 255, 0.22);
  color: #060711;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: var(--ink);
}

.button-icon {
  display: inline-flex;
  height: 20px;
  width: 20px;
}

.install-cta {
  flex-wrap: wrap;
  max-width: 100%;
}

.browser-logo-row {
  display: inline-flex;
  margin-right: 2px;
}

.browser-logo-row img {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 7, 17, 0.18);
  border-radius: 999px;
  height: 26px;
  margin-left: -6px;
  object-fit: contain;
  padding: 2px;
  width: 26px;
}

.browser-logo-row img:first-child {
  margin-left: 0;
}

.text-link {
  color: var(--cyan);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.anime-stage {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.anime-male {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  bottom: clamp(32px, 8vh, 82px);
  filter:
    drop-shadow(0 0 34px rgba(94, 231, 255, 0.28))
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.54));
  object-fit: cover;
  object-position: center 24%;
  overflow: hidden;
  position: absolute;
  right: clamp(8px, 5vw, 92px);
  transform: rotate(2deg);
  width: min(36vw, 430px);
}

.stage-panel {
  border: 1px solid var(--line);
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  position: absolute;
}

.panel-one {
  background: rgba(94, 231, 255, 0.08);
  height: 360px;
  right: -40px;
  top: 90px;
  width: min(36vw, 520px);
}

.panel-two {
  background: rgba(255, 79, 216, 0.08);
  bottom: 32px;
  height: 220px;
  right: 20vw;
  width: min(28vw, 390px);
}

.stage-card,
.mini-browser {
  background: rgba(10, 13, 28, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.stage-card {
  position: absolute;
  right: clamp(160px, 34vw, 520px);
  top: clamp(70px, 14vh, 130px);
  transform: rotate(-4deg);
  width: min(28vw, 330px);
}

.stage-card-top,
.browser-top {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 7px;
  height: 38px;
  padding: 0 13px;
}

.stage-card-top span,
.browser-top span {
  border-radius: 999px;
  display: block;
  height: 10px;
  width: 10px;
}

.stage-card-top span:nth-child(1),
.browser-top span:nth-child(1) {
  background: var(--red);
}

.stage-card-top span:nth-child(2),
.browser-top span:nth-child(2) {
  background: var(--gold);
}

.stage-card-top span:nth-child(3),
.browser-top span:nth-child(3) {
  background: var(--green);
}

.stage-sigil {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 210px;
  padding: 26px;
}

.stage-sigil img {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  filter: drop-shadow(0 0 22px rgba(94, 231, 255, 0.34));
  object-fit: cover;
  object-position: center;
  width: min(210px, 70%);
}

.stage-lines {
  display: grid;
  gap: 10px;
  padding: 0 24px 26px;
}

.stage-lines span {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  height: 9px;
}

.stage-lines span:nth-child(2) {
  width: 70%;
}

.stage-lines span:nth-child(3) {
  width: 48%;
}

.signal-strip {
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  height: 10px;
  position: absolute;
}

.strip-one {
  background: var(--cyan);
  right: 11vw;
  top: 64vh;
  width: 170px;
}

.strip-two {
  background: var(--magenta);
  right: 42vw;
  top: 24vh;
  width: 120px;
}

.intro-band,
.feature-band,
.cta-band {
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: clamp(36px, 7vw, 76px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
}

.intro-grid h2,
.intro-grid p {
  margin-bottom: 0;
}

.intro-grid > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 32px);
}

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

.extension-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.extension-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 390px;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.extension-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.extension-card:hover {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.card-blue {
  border-top: 4px solid var(--cyan);
}

.card-gold {
  border-top: 4px solid var(--gold);
}

.extension-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.extension-logo {
  border-radius: var(--radius);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
  height: 76px;
  object-fit: cover;
  width: 76px;
}

.product-logo {
  border-radius: var(--radius);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  height: 92px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 92px;
}

.status-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.extension-card p {
  color: var(--ink-soft);
  min-height: 92px;
}

.feature-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.feature-item {
  min-height: 190px;
}

.feature-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cyan);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.feature-icon svg {
  height: 25px;
  width: 25px;
}

.feature-item p {
  color: var(--ink-soft);
}

.product-hero {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  min-height: min(720px, calc(100svh - 96px));
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 72px);
  position: relative;
}

.product-hero-blue {
  background:
    linear-gradient(120deg, rgba(7, 8, 18, 0.98), rgba(12, 48, 76, 0.88)),
    #070812;
}

.product-hero-gold {
  background:
    linear-gradient(120deg, rgba(7, 8, 18, 0.98), rgba(84, 48, 10, 0.84)),
    #070812;
}

.product-copy,
.product-visual {
  position: relative;
  z-index: 1;
}

.product-copy {
  max-width: 720px;
}

.product-copy p {
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.product-visual {
  justify-self: center;
  width: min(100%, 500px);
}

.mini-browser {
  min-height: 380px;
  transform: rotate(2deg);
}

.workflow-list {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.workflow-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px;
}

.workflow-list span {
  background: rgba(94, 231, 255, 0.12);
  border: 1px solid rgba(94, 231, 255, 0.24);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 6px 9px;
}

.chart-panel {
  display: grid;
  gap: 24px;
  padding: 34px 28px;
}

.chart-bars {
  align-items: end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  height: 210px;
  justify-content: space-between;
  padding: 20px;
}

.chart-bars span {
  background: linear-gradient(180deg, var(--gold), var(--magenta));
  border-radius: 7px 7px 0 0;
  flex: 1;
  min-width: 30px;
}

.chart-note {
  align-items: center;
  background: rgba(247, 184, 75, 0.1);
  border: 1px solid rgba(247, 184, 75, 0.24);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.chart-note span {
  color: var(--gold);
  font-weight: 900;
}

.two-column {
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.detail-list p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.feature-showcase {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(20px, 4vw, 42px) clamp(18px, 5vw, 32px) clamp(58px, 8vw, 98px);
}

.showcase-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  padding: 22px;
}

.showcase-card h3 {
  color: var(--ink);
  font-size: 1.14rem;
}

.showcase-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.cta-band {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.promo-band {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.11), rgba(94, 231, 255, 0.05)),
    rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px);
}

.promo-band h2,
.promo-band p {
  margin-bottom: 0;
}

.promo-band p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.note-strip {
  background: rgba(7, 8, 18, 0.62);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 22px clamp(18px, 5vw, 72px);
}

.note-strip strong {
  color: var(--gold);
}

.note-strip p {
  color: var(--muted);
  margin-bottom: 0;
}

.install-section {
  background:
    linear-gradient(135deg, rgba(94, 231, 255, 0.1), rgba(255, 79, 216, 0.08)),
    rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.install-section h2 {
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  margin-bottom: 14px;
}

.install-section p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.browser-options {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.browser-option {
  align-items: center;
  background: rgba(10, 13, 28, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 2px 14px;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 84px;
  padding: 16px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.browser-option:hover {
  border-color: rgba(94, 231, 255, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.browser-logo {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  grid-row: span 2;
  height: 48px;
  object-fit: contain;
  padding: 6px;
  width: 48px;
}

.browser-option strong {
  line-height: 1.1;
}

.browser-option span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 0;
  max-width: 780px;
}

.policy-hero {
  background:
    linear-gradient(120deg, rgba(7, 8, 18, 0.98), rgba(40, 19, 56, 0.86)),
    #070812;
  color: var(--ink);
  overflow: hidden;
  padding: clamp(58px, 10vw, 110px) clamp(18px, 5vw, 72px);
  position: relative;
}

.policy-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.policy-hero p {
  position: relative;
  z-index: 1;
}

.policy-hero p:last-child {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.policy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: clamp(32px, 5vw, 64px) auto;
  max-width: 860px;
  padding: clamp(24px, 5vw, 48px);
}

.policy h2 {
  font-size: 1.42rem;
  margin-bottom: 10px;
}

.policy p {
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.policy-actions {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.site-footer {
  background: rgba(3, 4, 10, 0.98);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  padding: clamp(30px, 5vw, 54px) clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: var(--muted);
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink-soft);
  font-weight: 800;
  padding: 8px 10px;
}

.footer-links a:hover {
  border-color: rgba(94, 231, 255, 0.44);
  color: var(--cyan);
}

.privacy-fineprint {
  color: var(--muted);
  font-size: 0.88rem;
  grid-column: 1 / -1;
  margin: 0;
}

.privacy-fineprint a {
  color: var(--ink-soft);
  font-weight: 800;
  margin-left: 8px;
}

.privacy-fineprint a:hover {
  color: var(--cyan);
}

.copyright {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(7, 8, 18, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .stage-card {
    opacity: 0.34;
    right: 22px;
    top: 72px;
    width: 300px;
  }

  .anime-male {
    opacity: 0.46;
    right: -80px;
    width: 360px;
  }

  .stage-panel,
  .signal-strip {
    display: none;
  }

  .intro-grid,
  .extension-grid,
  .feature-grid,
  .product-hero,
  .install-section,
  .promo-band,
  .showcase-grid,
  .note-strip,
  .two-column {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
  }

  .product-visual {
    justify-self: stretch;
  }

  .cta-band,
  .site-footer {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .site-nav {
    top: 66px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand img {
    height: 32px;
    width: 32px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-actions,
  .card-actions,
  .policy-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stage-card {
    display: none;
  }

  .anime-male {
    opacity: 0.32;
    right: -130px;
    width: 330px;
  }

  .extension-card {
    min-height: 0;
  }

  .extension-card p {
    min-height: 0;
  }

  .extension-topline {
    align-items: start;
    gap: 16px;
    flex-direction: column;
  }

  .mini-browser {
    min-height: 310px;
    transform: none;
  }

  .workflow-list div {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
