:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #eef7ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #0b1220;
  --muted: #516176;
  --faint: #8aa0b8;
  --line: rgba(35, 94, 165, 0.16);
  --blue: #1268ff;
  --blue-deep: #073fbb;
  --cyan: #00b8ff;
  --green: #0b8f70;
  --purple: #6f54ff;
  --orange: #f08a24;
  --glow: 0 0 0 1px rgba(18, 104, 255, 0.12), 0 18px 60px rgba(18, 104, 255, 0.22), 0 0 90px rgba(0, 184, 255, 0.18);
  --shadow: 0 24px 80px rgba(16, 58, 112, 0.12);
  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;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 6%, rgba(0, 184, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 2%, rgba(18, 104, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 52% 28%, rgba(231, 246, 255, 0.9), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 44%, #ffffff 100%);
  color: var(--text);
}

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(21, 25, 35, 0.12);
  border-radius: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(18, 104, 255, 0.24);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.section-pad {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: auto;
  padding-top: clamp(2.25rem, 5vw, 4.25rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 18ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.15rem, 4.2vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.25vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 0;
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: var(--glow);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(18, 104, 255, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
}

.button.ghost {
  color: var(--muted);
}

.fine-print {
  margin-top: 1.2rem;
  color: var(--faint);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.12), rgba(18, 104, 255, 0.1)),
    var(--bg-soft);
  box-shadow: var(--glow);
}

.hero-media video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.copy-stack {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.surface {
  width: min(1240px, calc(100% - 2rem));
  padding-inline: clamp(1rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 184, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 255, 0.72));
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

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

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

.feature-card {
  min-height: 220px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(16, 58, 112, 0.06);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.step-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.example-showcase {
  position: relative;
}

.example-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.example-card {
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 1.3rem 1.3rem 2.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(16, 58, 112, 0.06);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.example-card:hover {
  border-color: rgba(18, 104, 255, 0.42);
  transform: translateY(-2px);
}

.example-card:focus-visible,
.example-controls button:focus-visible {
  outline: 3px solid rgba(18, 104, 255, 0.35);
  outline-offset: 3px;
}

.example-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--faint);
  font-size: 0.8rem;
  font-weight: 900;
}

.example-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.example-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.example-dot {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid rgba(18, 104, 255, 0.5);
  border-radius: 50%;
  background: #fff;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

#example-receipt-web:checked ~ .example-grid .example-card-receipt,
#example-receipt-chat:checked ~ .example-grid .example-card-receipt,
#example-home:checked ~ .example-grid .example-card-home,
#example-action-web:checked ~ .example-grid .example-card-action,
#example-action-chat:checked ~ .example-grid .example-card-action,
#example-spotify:checked ~ .example-grid .example-card-spotify {
  border-color: rgba(18, 104, 255, 0.55);
  box-shadow: 0 16px 48px rgba(18, 104, 255, 0.14);
}

#example-receipt-web:checked ~ .example-grid .example-card-receipt .example-dot:nth-child(1),
#example-receipt-chat:checked ~ .example-grid .example-card-receipt .example-dot:nth-child(2),
#example-home:checked ~ .example-grid .example-card-home .example-dot:nth-child(1),
#example-action-web:checked ~ .example-grid .example-card-action .example-dot:nth-child(1),
#example-action-chat:checked ~ .example-grid .example-card-action .example-dot:nth-child(2),
#example-spotify:checked ~ .example-grid .example-card-spotify .example-dot:nth-child(1) {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 104, 255, 0.12), 0 0 18px rgba(0, 184, 255, 0.65);
  transform: scale(1.08);
}

.example-stage {
  position: relative;
  isolation: isolate;
  margin-top: 1rem;
}

.example-stage::before {
  position: absolute;
  z-index: -1;
  top: -1rem;
  bottom: -2.5rem;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(18, 104, 255, 0.22), rgba(0, 184, 255, 0.08) 72%, transparent);
  filter: blur(18px);
  clip-path: polygon(13% 0, 87% 0, 62% 100%, 38% 100%);
  content: "";
  pointer-events: none;
}

.example-panel {
  display: none;
  animation: example-in 240ms ease-out;
}

#example-receipt-web:checked ~ .example-stage .example-panel-receipt-web,
#example-receipt-chat:checked ~ .example-stage .example-panel-receipt-chat,
#example-home:checked ~ .example-stage .example-panel-home,
#example-action-web:checked ~ .example-stage .example-panel-action-web,
#example-action-chat:checked ~ .example-stage .example-panel-action-chat,
#example-spotify:checked ~ .example-stage .example-panel-spotify {
  display: block;
}

.example-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--faint);
  font-size: 0.85rem;
  font-weight: 750;
}

.example-controls button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--blue-deep);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

.example-controls button:hover {
  border-color: rgba(18, 104, 255, 0.42);
  background: #fff;
}

@keyframes example-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-pair {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  height: clamp(220px, 27vw, 320px);
}

.showcase-desktop {
  align-items: center;
}

.showcase-phone {
  align-items: stretch;
}

.showcase-single {
  align-items: center;
}

.showcase-pair figure {
  display: flex;
  min-width: 0;
  height: 100%;
  margin: 0;
}

.showcase-desktop figure {
  width: calc(50% - 0.35rem);
}

.showcase-pair img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
}


.install {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.install-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.quickstart {
  border-top: 1px solid var(--line);
}

.quickstart .section-heading > p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.6;
}

.quickstart-steps {
  display: grid;
  min-width: 0;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0;
  padding: 0;
  list-style: none;
}

.quickstart-steps li {
  min-width: 0;
  min-height: 250px;
  max-width: 100%;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.quickstart-steps li > span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.quickstart-steps p {
  color: var(--muted);
  line-height: 1.55;
}

.quickstart-steps pre {
  max-width: 100%;
  overflow-x: auto;
  margin: 1rem 0;
  padding: 0.9rem;
  background: #f3f8fc;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.5;
}

.terminal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.terminal-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(239, 247, 255, 0.72);
}

.terminal-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0;
  background: var(--faint);
}

.terminal-card pre {
  margin: 0;
  overflow-x: auto;
  padding: 1.4rem;
  color: var(--text);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  line-height: 1.6;
}

.install-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.option-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.option-card p {
  color: var(--muted);
  line-height: 1.55;
}

.option-card pre {
  overflow-x: auto;
  margin: 1.2rem 0 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 160px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--muted);
  line-height: 1.5;
  counter-increment: steps;
}

.steps li::before {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-weight: 900;
  content: "0" counter(steps);
}

.cta {
  width: min(960px, calc(100% - 2rem));
  text-align: center;
}

.cta p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--faint);
}

.prose-page {
  width: min(900px, calc(100% - 2rem));
}

.docs-page {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.docs-shell {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 860px);
  gap: clamp(2rem, 5vw, 4.5rem);
  justify-content: start;
}

.docs-sidebar {
  position: sticky;
  top: 5.5rem;
  align-self: start;
}

.docs-sidebar-nav {
  display: grid;
  gap: 0.2rem;
}

.docs-sidebar-nav a {
  padding: 0.65rem 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.docs-sidebar-nav > a:hover,
.docs-sidebar-nav > a.is-current,
.docs-sidebar-subnav a:hover,
.docs-sidebar-subnav a.is-current {
  background: rgba(18, 104, 255, 0.09);
  color: var(--text);
}

.docs-sidebar-subnav {
  display: grid;
  gap: 0.15rem;
  margin: 0.1rem 0 0.35rem 0.75rem;
  padding-left: 0.55rem;
  border-left: 1px solid var(--line);
}

.docs-sidebar-subnav a {
  padding: 0.5rem 0.6rem;
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 600;
}

.docs-article {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.prose-card {
  padding: clamp(1.2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.prose-card h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.prose-card.docs-article h1 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.docs-article .prose h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.docs-figure {
  margin: 1.75rem 0 2.25rem;
}

.docs-figure a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.docs-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.docs-figure figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.prose {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 0.45rem;
}

.prose a {
  color: var(--cyan);
}

.page-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.page-links a {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
}

.page-links a:hover {
  border-color: rgba(18, 104, 255, 0.4);
}

.page-links span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.prose code {
  padding: 0.12rem 0.32rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.prose pre {
  overflow-x: auto;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(16, 58, 112, 0.06);
}

.code-block {
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 58, 112, 0.06);
}

.code-block pre {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.code-block-toolbar {
  display: flex;
  justify-content: flex-end;
  min-height: 2.35rem;
  padding: 0.35rem 0.45rem;
  border-bottom: 1px solid var(--line);
  background: #f3f8fc;
}

.code-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.code-copy svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.code-copy:hover {
  background: rgba(18, 104, 255, 0.08);
  color: var(--blue-deep);
}

.code-copy:focus-visible {
  outline: 3px solid rgba(18, 104, 255, 0.28);
  outline-offset: 2px;
}

.code-copy[data-copied="true"] {
  color: var(--green);
}

.prose pre code {
  padding: 0;
  border: 0;
  background: transparent;
}

.prose .highlight pre {
  color: var(--text) !important;
  background: #f3f8fc !important;
}

.prose .highlight pre span {
  color: var(--text) !important;
}

.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 1.5rem 0;
  color: var(--text);
}

.prose th,
.prose td {
  min-width: 9rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: rgba(238, 247, 255, 0.72);
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 0.2rem 1rem;
  border-left: 3px solid var(--cyan);
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .install {
    grid-template-columns: 1fr;
  }

  .docs-rail {
    position: static;
  }

  h1 {
    max-width: 14ch;
  }

  .feature-grid,
  .example-grid,
  .steps,
  .install-options,
  .quickstart-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .section-pad {
    width: min(100% - 1rem, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .feature-grid,
  .example-grid,
  .steps,
  .install-options,
  .quickstart-steps {
    grid-template-columns: 1fr;
  }

  .showcase-pair {
    gap: 0.65rem;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .example-grid {
    display: block;
  }

  .example-card {
    display: none;
    min-height: 220px;
  }

  #example-receipt-web:checked ~ .example-grid .example-card-receipt,
  #example-receipt-chat:checked ~ .example-grid .example-card-receipt,
  #example-home:checked ~ .example-grid .example-card-home,
  #example-action-web:checked ~ .example-grid .example-card-action,
  #example-action-chat:checked ~ .example-grid .example-card-action,
  #example-spotify:checked ~ .example-grid .example-card-spotify {
    display: block;
  }

  .example-controls {
    display: flex;
  }

  .showcase-desktop figure {
    flex: 0 0 auto;
    width: auto;
  }

  .showcase-desktop img {
    max-width: none;
  }

  .showcase-phone {
    justify-content: center;
    overflow-x: visible;
  }

  .site-footer {
    flex-direction: column;
  }
}
