:root {
  --ink: #10211f;
  --ink-soft: #53635f;
  --pine: #2f806e;
  --pine-deep: #174f44;
  --mist: #e8f1ef;
  --fog: #f6f9f8;
  --white: #ffffff;
  --night: #071714;
  --ember: #f4a51c;
  --line: rgba(16, 33, 31, 0.12);
  --shadow: 0 36px 90px rgba(18, 53, 47, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--fog);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, select { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 10px 14px; border-radius: 10px; background: var(--night); color: white;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 50; inset: 0 0 auto;
  padding: 14px 0;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(246, 249, 248, 0.84);
  border-bottom: 1px solid rgba(16, 33, 31, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 760; letter-spacing: -0.03em; }
.brand img { width: 40px; height: 40px; border-radius: 10px; box-shadow: 0 8px 20px rgba(7, 23, 20, .16); }
.desktop-nav { display: flex; gap: 32px; margin-left: auto; }
.desktop-nav a, .footer a { color: var(--ink-soft); text-decoration: none; font-size: .9rem; font-weight: 600; }
.desktop-nav a:hover, .footer a:hover { color: var(--pine); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-control select {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 30px 9px 13px;
  color: var(--ink); background: rgba(255,255,255,.62); cursor: pointer;
}
.nav-download {
  text-decoration: none; border-radius: 999px; background: var(--ink); color: white;
  padding: 10px 17px; font-size: .84rem; font-weight: 700; white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}
.nav-download:hover { transform: translateY(-1px); background: var(--pine-deep); }

.hero {
  position: relative; min-height: 1120px; padding: 172px 0 96px; overflow: hidden;
  background: linear-gradient(180deg, #eef5f3 0%, #f6f9f8 72%);
}
.hero-atmosphere { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-atmosphere::before, .hero-atmosphere::after, .hero-atmosphere span {
  content: ""; position: absolute; border-radius: 50%; filter: blur(2px);
}
.hero-atmosphere::before { width: 520px; height: 520px; left: -210px; top: 110px; border: 1px solid rgba(47,128,110,.18); }
.hero-atmosphere::after { width: 750px; height: 750px; right: -360px; top: -320px; border: 1px solid rgba(47,128,110,.14); }
.hero-atmosphere span { width: 300px; height: 300px; left: 64%; top: 20%; background: rgba(244,165,28,.11); filter: blur(100px); }
.hero-copy { position: relative; z-index: 2; text-align: center; max-width: 920px; }
.eyebrow {
  margin: 0 0 20px; color: var(--pine); font-size: .76rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.hero h1, h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", Georgia, serif;
  font-weight: 500; letter-spacing: -0.055em; line-height: .98;
}
.hero h1 { margin: 0; font-size: clamp(4rem, 9vw, 8rem); }
.hero h1 em, h2 em { color: var(--pine); font-weight: 500; }
.hero-lede { max-width: 720px; margin: 34px auto 0; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-cta-group {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex; align-items: center; gap: 11px; padding: 11px 19px 11px 15px;
  border-radius: 15px; background: var(--night); color: white; text-decoration: none;
  box-shadow: 0 12px 30px rgba(7,23,20,.18); transition: transform .2s ease, box-shadow .2s ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 17px 36px rgba(7,23,20,.24); }
.store-button svg { width: 27px; height: 27px; fill: currentColor; }
.store-button span { display: grid; text-align: left; line-height: 1.05; }
.store-button small { font-size: .66rem; opacity: .76; }
.store-button strong { font-size: 1.05rem; letter-spacing: -.02em; }

.dmg-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 15px;
  background: var(--pine-deep);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(47, 128, 110, 0.28);
  transition: all 0.2s ease;
}

.dmg-button:hover {
  transform: translateY(-2px);
  background: var(--pine);
  box-shadow: 0 16px 36px rgba(47, 128, 110, 0.38);
}

.hero-homebrew-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 128, 110, 0.22);
  padding: 6px 8px 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(7, 23, 20, 0.06);
  backdrop-filter: blur(10px);
  max-width: 100%;
  flex-wrap: wrap;
}

.brew-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--pine-deep);
  letter-spacing: -0.01em;
}

.brew-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f6f4;
  border: 1px solid rgba(47, 128, 110, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.brew-code-pill:hover {
  background: #e4f0ed;
  border-color: rgba(47, 128, 110, 0.35);
}

.brew-code-pill code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.84rem;
  color: var(--ink);
  white-space: nowrap;
}

.brew-code-pill .copy-hint {
  color: var(--pine-deep);
  font-size: 0.78rem;
  font-weight: 750;
  padding: 2px 8px;
  background: rgba(47, 128, 110, 0.12);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.brew-code-pill.copied {
  background: #dff2ed;
  border-color: rgba(68, 187, 162, 0.6);
}

.brew-code-pill.copied .copy-hint {
  background: var(--pine-deep);
  color: white;
}

.hero-footer-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.requirements { color: #70807c; font-size: .85rem; margin: 0; }

.preview-scroll-link {
  color: var(--pine-deep);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.preview-scroll-link:hover {
  color: var(--pine);
  text-decoration: underline;
}

.meta-dot {
  opacity: 0.5;
}
.hero-product { position: relative; z-index: 2; margin-top: 72px; }
.hero-product img {
  position: relative;
  width: min(1060px, 92%);
  height: auto;
  aspect-ratio: 1944 / 1808;
  margin: 0 auto;
  filter: drop-shadow(0 46px 50px rgba(12, 42, 37, .22));
}
.product-halo {
  position: absolute; width: 82%; aspect-ratio: 1944 / 1808; left: 9%; top: 7%; border-radius: 48%;
  background: radial-gradient(ellipse, rgba(47,128,110,.20), transparent 66%); filter: blur(34px);
}

.rhythm-section { position: relative; padding: 150px 0 130px; background: var(--white); overflow: hidden; }
.rhythm-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: end; }
.rhythm-intro .eyebrow { grid-column: 1 / -1; }
h2 { margin: 0; font-size: clamp(3.1rem, 6vw, 6rem); }
.rhythm-intro > p:last-child { color: var(--ink-soft); font-size: 1.12rem; max-width: 470px; margin: 0 0 8px; }
.rhythm-track {
  position: relative; display: grid; grid-template-columns: 1.5fr .6fr 1fr; gap: 18px;
  margin-top: 94px; padding-top: 44px;
}
.track-line { position: absolute; inset: 0 0 auto; height: 2px; background: var(--line); }
.track-progress { display: block; width: calc(var(--rhythm-progress, 0) * 100%); height: 100%; background: var(--pine); transition: width .08s linear; }
.track-cursor {
  position: absolute; left: calc(var(--rhythm-progress, 0) * 100%); top: 50%; width: 14px; height: 14px;
  border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 7px rgba(244,165,28,.16);
  transform: translate(-50%, -50%); transition: left .08s linear;
}
.interval { min-height: 215px; padding: 28px; border-top: 3px solid; background: #f5f8f7; }
.interval span { display: block; color: var(--ink-soft); font-size: .84rem; font-weight: 750; }
.interval strong { display: inline-block; margin-top: 28px; font-family: "Iowan Old Style", Georgia, serif; font-size: 5rem; font-weight: 500; line-height: .85; letter-spacing: -.07em; }
.interval small { margin-left: 9px; color: var(--ink-soft); }
.interval-focus { border-color: var(--pine); }
.interval-short { border-color: var(--ember); background: #fff9ee; }
.interval-long { border-color: #315b75; background: #f1f6f9; }
.rhythm-note { margin-top: 24px; color: var(--ink-soft); font-size: .85rem; text-align: right; }

.experience { padding: 150px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.section-heading h2 { font-size: clamp(3rem, 5vw, 5rem); }
.section-heading > p { max-width: 460px; margin: 0 0 6px; color: var(--ink-soft); font-size: 1.08rem; }
.shot-switcher { margin-top: 72px; }
.shot-tabs { display: flex; width: max-content; margin: 0 auto 20px; padding: 5px; border-radius: 999px; background: #e5ecea; }
.shot-tabs button { border: 0; border-radius: 999px; padding: 10px 20px; color: var(--ink-soft); background: transparent; cursor: pointer; font-weight: 700; }
.shot-tabs button[aria-selected="true"] { color: var(--pine-deep); background: white; box-shadow: 0 4px 16px rgba(16,33,31,.08); }
.shot-stage { position: relative; }
.shot-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1944 / 1808;
  filter: drop-shadow(0 34px 38px rgba(12,42,37,.18));
  transition: opacity .18s ease, transform .25s ease;
}
.shot-stage img.changing { opacity: 0; transform: translateY(8px); }
.shot-glow { position: absolute; inset: 7% 3% 7%; border-radius: 48%; background: rgba(47,128,110,.18); filter: blur(65px); }
.shot-caption { max-width: 670px; margin: 24px auto 0; color: var(--ink-soft); text-align: center; }

.break-moment { position: relative; min-height: 790px; display: flex; align-items: center; padding: 140px 0; color: white; background: var(--night); overflow: hidden; }
.break-vignette { position: absolute; inset: 0; }
.break-vignette::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 48%, rgba(46,138,112,.42), transparent 34%); }
.break-vignette::after { content: ""; position: absolute; width: 760px; height: 760px; right: -100px; top: 5%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.break-vignette span { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.break-vignette span:nth-child(1) { width: 500px; height: 500px; right: 30px; top: 20%; }
.break-vignette span:nth-child(2) { width: 300px; height: 300px; right: 130px; top: 33%; }
.break-vignette span:nth-child(3) { width: 90px; height: 90px; right: 235px; top: 47%; background: rgba(255,255,255,.08); box-shadow: 0 0 70px rgba(255,255,255,.16); }
.break-copy { position: relative; z-index: 1; }
.eyebrow.light { color: #96c7bc; }
.break-copy h2 { max-width: 870px; }
.break-copy h2 em { color: #9bd3c7; }
.break-copy > p:not(.eyebrow) { max-width: 570px; margin: 32px 0; color: rgba(255,255,255,.66); font-size: 1.1rem; }
.break-copy ul { display: flex; gap: 30px; padding: 0; margin: 44px 0 0; list-style: none; }
.break-copy li { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.26); font-size: .84rem; color: rgba(255,255,255,.82); }

.details { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; padding: 150px 0; }
.detail-lead { position: sticky; top: 150px; align-self: start; }
.detail-lead h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.detail-list { border-top: 1px solid var(--line); }
.detail-list article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.detail-list article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--pine); background: var(--mist); font-size: 1.2rem; }
.detail-list h3 { margin: 0 0 8px; font-size: 1.15rem; }
.detail-list p { max-width: 500px; margin: 0; color: var(--ink-soft); }

.closing { padding: 120px 0 145px; text-align: center; border-top: 1px solid var(--line); }
.closing img { margin: 0 auto 30px; border-radius: 25%; box-shadow: 0 22px 55px rgba(7,23,20,.18); }
.closing h2 { max-width: 930px; margin-inline: auto; }
.closing > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.1rem; }
.closing .store-button { margin-top: 12px; }
.footer { min-height: 110px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.footer > div { display: flex; gap: 16px; align-items: baseline; }
.footer span { color: var(--ink-soft); font-size: .82rem; }
.footer-version {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.55;
  margin-left: 8px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  letter-spacing: 0.03em;
}
.footer nav { display: flex; gap: 24px; }

.simple-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(47, 128, 110, 0.13), transparent 34%),
    linear-gradient(180deg, #eef5f3 0%, var(--fog) 48%, #fff 100%);
}
.simple-header {
  position: static;
  padding-top: 22px;
}
.legal {
  max-width: 820px;
  padding: 92px 0 110px;
}
.legal h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: .98;
}
.legal-updated {
  margin: 20px 0 58px;
  color: var(--ink-soft);
}
.legal section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.legal section:last-child {
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.legal p,
.legal li {
  color: var(--ink-soft);
}
.legal ul {
  margin: 0;
  padding-left: 1.2rem;
}
.support-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--pine-deep);
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 4px; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .desktop-nav { display: none; }
  .nav-download { display: none; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero-product { margin-top: 54px; }
  .rhythm-intro, .section-heading, .details { grid-template-columns: 1fr; gap: 34px; }
  .rhythm-intro > p:last-child, .section-heading > p { margin: 0; }
  .rhythm-track { grid-template-columns: 1fr 1fr; }
  .interval-focus { grid-column: 1 / -1; }
  .details { padding-block: 110px; }
  .detail-lead { position: static; }
  .break-vignette { opacity: .6; transform: translateX(34%); }
}

@media (max-width: 620px) {
  .site-header { padding-block: 9px; }
  .brand img { width: 36px; height: 36px; }
  .language-control select { max-width: 126px; }
  .hero { padding: 130px 0 72px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5rem); }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-product { width: calc(100% + 80px); margin-left: -40px; }
  .rhythm-section, .experience { padding-block: 96px; }
  h2 { font-size: 3.2rem; }
  .rhythm-track { grid-template-columns: 1fr; margin-top: 65px; }
  .interval-focus { grid-column: auto; }
  .track-line { display: none; }
  .rhythm-note { text-align: left; }
  .shot-tabs { width: 100%; }
  .shot-tabs button { flex: 1; padding-inline: 8px; font-size: .85rem; }
  .shot-stage { width: calc(100% + 64px); margin-left: -32px; }
  .break-moment { min-height: 700px; padding-block: 100px; }
  .break-copy ul { display: grid; gap: 16px; }
  .break-vignette { transform: translateX(60%); }
  .details { gap: 60px; }
  .closing { padding-block: 96px; }
  .footer { padding-block: 32px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer > div { display: grid; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.hero-homebrew { color: var(--ink-soft); font-size: .88rem; margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.homebrew-inline-copy-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.homebrew-inline-copy-btn code {
  background: rgba(47, 128, 110, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(47, 128, 110, 0.2);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .84rem;
  color: var(--pine-deep);
  transition: all .2s ease;
}
.homebrew-inline-copy-btn:hover code {
  background: rgba(47, 128, 110, 0.18);
  border-color: rgba(47, 128, 110, 0.35);
}
.homebrew-inline-copy-btn .copy-hint {
  color: var(--pine);
  font-size: .8rem;
  font-weight: 700;
  transition: color .2s ease;
}
.homebrew-inline-copy-btn.copied code {
  background: rgba(47, 128, 110, 0.25);
  border-color: rgba(68, 187, 162, 0.6);
  color: #1b6353;
}
.homebrew-inline-copy-btn.copied .copy-hint {
  color: #1b6353;
}

.install-section { padding-block: 100px 40px; }
.install-card { background: linear-gradient(145deg, #0e2420, #081a17); border: 1px solid rgba(47, 128, 110, 0.3); border-radius: 28px; padding: 52px; color: white; box-shadow: 0 24px 70px rgba(7, 23, 20, 0.28); }
.install-header { max-width: 680px; margin-bottom: 38px; }
.install-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(47, 128, 110, 0.25); color: #44bba2; padding: 6px 14px; border-radius: 99px; font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.install-header h2 { margin: 0 0 12px; font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1.05; color: white; }
.install-desc { color: #a4beba; font-size: 1.1rem; line-height: 1.6; margin: 0; }

.terminal-box { background: #040c0b; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.1); overflow: hidden; box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4); }
.terminal-top { background: #0a1614; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.terminal-dots { display: flex; gap: 7px; }
.terminal-dots span { width: 11px; height: 11px; border-radius: 50%; background: #ff5f56; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #27c93f; }
.terminal-title { font-size: .8rem; color: #6e8884; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 600; }
.copy-btn { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); color: #d4e0dd; border-radius: 8px; padding: 6px 12px; font-size: .8rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all .2s ease; }
.copy-btn:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.28); color: white; }
.copy-btn.copied { background: rgba(47, 128, 110, 0.35); border-color: rgba(68, 187, 162, 0.6); color: #44bba2; }

.terminal-code { padding: 24px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 1rem; color: #e2f0ed; display: flex; align-items: center; gap: 12px; overflow-x: auto; }
.terminal-code .prompt { color: #2f806e; font-weight: 700; user-select: none; }
.terminal-code code { font-family: inherit; white-space: nowrap; }

.install-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.install-step { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; }
.step-num { width: 34px; height: 34px; border-radius: 10px; background: rgba(47, 128, 110, 0.25); color: #44bba2; display: grid; place-items: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.install-step h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: white; }
.install-step p { margin: 0; color: #a4beba; font-size: .88rem; line-height: 1.55; }
.mini-code { background: rgba(47, 128, 110, 0.2); padding: 2px 6px; border-radius: 5px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .8rem; color: #44bba2; word-break: break-all; }

@media (max-width: 900px) {
  .install-steps { grid-template-columns: 1fr; gap: 14px; }
  .install-card { padding: 32px 24px; }
  .install-section { padding-block: 70px 30px; }
}

