/* Account Switcher — marketing site */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --orange: #f6843c;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;
  --ink: #0f172a;
  --ink-muted: #475569;
  --ink-light: #64748b;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --max: 1120px;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
}

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

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

code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.875em;
  background: var(--orange-soft);
  color: var(--orange-dark);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.site-nav__brand img {
  width: 32px;
  height: 32px;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-nav__links a:hover {
  color: var(--orange);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 20px rgba(246, 132, 60, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(246, 132, 60, 0.45);
}

.btn--secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  border: none;
  padding: 0.5rem 0.75rem;
}

.btn--ghost:hover {
  color: var(--orange);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(246, 132, 60, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(246, 132, 60, 0.06), transparent);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 9999px;
  border: 1px solid rgba(246, 132, 60, 0.2);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  line-height: 1.65;
  color: var(--ink-light);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero__tag {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__visual {
  position: relative;
}

.hero__mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.hero__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.hero__mockup-dot:first-child {
  background: #f87171;
}

.hero__mockup-dot:nth-child(2) {
  background: #fbbf24;
}

.hero__mockup-dot:nth-child(3) {
  background: #34d399;
}

.hero__mockup img {
  width: 100%;
}

.hero__float {
  position: absolute;
  width: 42%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.hero__float--1 {
  bottom: -8%;
  right: -4%;
}

.hero__float--2 {
  top: 12%;
  left: -6%;
  width: 36%;
}

/* ── Sections ── */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--surface);
}

.section__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section__desc {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--ink-light);
}

/* ── Use case cards ── */
.use-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.use-case-card {
  padding: 1.75rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section--alt .use-case-card {
  background: var(--surface-alt);
}

.use-case-card:hover {
  border-color: rgba(246, 132, 60, 0.35);
  box-shadow: var(--shadow);
}

.use-case-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  background: var(--orange-soft);
  border-radius: 12px;
}

.use-case-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}

.use-case-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ── Walkthrough (how-to + screenshots) ── */
.walkthrough {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.walkthrough__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.walkthrough__item--compact {
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.walkthrough__item--visual {
  padding: 1.75rem;
}

.walkthrough__content {
  min-width: 0;
}

.walkthrough__num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
}

.walkthrough__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--ink);
}

.walkthrough__action {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.walkthrough__detail {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-light);
}

.walkthrough__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}

.walkthrough__figure img {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

.walkthrough__figure-secondary {
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  width: 42% !important;
  max-width: 160px !important;
  border-radius: 12px;
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-lg);
}

.walkthrough__note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: #9a3412;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
}

.walkthrough__error {
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: var(--ink-light);
}

.walkthrough__loading {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--ink-light);
  font-size: 0.9375rem;
}

/* ── Steps (legacy, kept for reference) ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 10px;
}

.step__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.step__text {
  margin: 0;
  font-size: 0.9375rem;
}

/* ── Screenshot gallery ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery__caption {
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-top: 1px solid var(--border);
}

/* ── Dev block ── */
.dev-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  color: #cbd5e1;
}

.dev-panel__title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f8fafc;
}

.dev-panel__intro {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #94a3b8;
}

.dev-panel__intro code {
  background: rgba(255, 255, 255, 0.08);
  color: #fcd34d;
}

.dev-panel__cta {
  margin: 1.25rem 0 0;
}

.dev-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dev-panel__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.dev-panel__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.dev-panel__code {
  padding: 1.25rem;
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow-x: auto;
}

.dev-panel__code .comment {
  color: #64748b;
}

.dev-panel__code .key {
  color: #7dd3fc;
}

.dev-panel__code .val {
  color: #fcd34d;
}

.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;
}

/* ── Changelog ── */
.changelog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.changelog-features-wrap {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.changelog-features__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.changelog-features__head h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}

.changelog-version {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(246, 132, 60, 0.25);
  border-radius: 9999px;
}

.changelog-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.changelog-feature__status {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #15803d;
  background: #dcfce7;
  border-radius: 9999px;
}

.changelog-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.changelog-feature__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

.changelog-feature__detail {
  font-size: 0.8125rem;
  color: var(--ink-light);
  line-height: 1.5;
}

.changelog-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-release {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
}

.changelog-release:last-child {
  padding-bottom: 0;
}

.changelog-release__marker {
  position: relative;
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  margin-left: 5px;
  background: var(--orange);
  border: 3px solid var(--surface-alt);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange);
  z-index: 1;
}

.changelog-release:not(:last-child) .changelog-release__marker::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 2px;
  height: calc(100% + 1.75rem);
  transform: translateX(-50%);
  background: var(--border);
}

.changelog-release__card {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.changelog-release:first-child .changelog-release__card {
  border-color: rgba(246, 132, 60, 0.35);
}

.changelog-release__header {
  margin-bottom: 0.875rem;
}

.changelog-release__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.375rem;
}

.changelog-release__version {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--orange-dark);
}

.changelog-release__label {
  padding: 0.15rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 9999px;
}

.changelog-release__date {
  font-size: 0.8125rem;
  color: var(--ink-light);
}

.changelog-release__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.changelog-release__notes {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.changelog-release__notes li {
  margin-bottom: 0.375rem;
}

.changelog-release__notes li:last-child {
  margin-bottom: 0;
}

.changelog__error {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-light);
}

.changelog__loading {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-light);
}

/* ── Install ── */
.install-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.install-card {
  padding: 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.install-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.install-card__icon--browser {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.install-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}

.install-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
}

.install-card--disabled {
  opacity: 0.6;
}

.install-card__btn--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--ink);
  color: #94a3b8;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand {
  font-weight: 700;
  font-size: 1.125rem;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a:hover {
  color: var(--orange);
}

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  text-align: center;
}

.site-footer__bottom a {
  color: var(--orange);
}

/* ── Privacy page ── */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.page-hero p {
  margin: 0;
  opacity: 0.92;
}

.legal {
  padding: 3rem 0 4rem;
}

.legal .container {
  max-width: 800px;
}

.legal__updated {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-light);
  margin-bottom: 2rem;
}

.legal__highlight {
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: 0.9375rem;
  color: #9a3412;
}

.legal section {
  margin-bottom: 2.5rem;
}

.legal h2 {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
}

.legal h3 {
  margin: 1.25rem 0 0.625rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.legal p,
.legal li {
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal p {
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.375rem;
}

.legal .card {
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal a {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .use-cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .install-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .site-nav__links {
    display: flex;
  }

  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }

  .use-cases {
    grid-template-columns: repeat(3, 1fr);
  }

  .walkthrough__item--visual {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .walkthrough__item--reverse .walkthrough__content {
    order: 2;
  }

  .walkthrough__item--reverse .walkthrough__figure {
    order: 1;
  }

  .walkthrough__figure img {
    max-width: 100%;
  }

  .changelog-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
  }

  .dev-panel {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .hero__float {
    display: none;
  }

  .walkthrough__figure-secondary {
    display: none;
  }
}
