@font-face {
  font-family: "Bricolage Grotesque";
  src: url("./assets/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("./assets/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #fafafa;
  --white: #ffffff;
  --ink: #151517;
  --muted: #626269;
  --accent: #c4431d;
  --accent-soft: #fff0e9;
  --line: #e5e5e8;
  --display: "Bricolage Grotesque",Inter,system-ui,sans-serif;
  --sans: Inter,system-ui,sans-serif;
  --shadow: 0 18px 50px -24px #15151738,0 2px 8px #15151708;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

button, input, select {
  font: inherit;
}

button, a, summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  cursor: pointer;
}

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

button {
  border: 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

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

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

h1, h2, h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  letter-spacing: -.035em;
  text-wrap: balance;
  font-weight: 700;
}

h1 {
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.15;
}

h3 {
  letter-spacing: -.025em;
  font-size: 26px;
  line-height: 1.25;
}

::selection {
  background: #ffe0cf;
}

:focus-visible {
  outline-offset: 5px;
  border-radius: 5px;
  outline: 3px solid #d95c36;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(1160px, 100% - 80px);
  margin-inline: auto;
}

.symbol-defs {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

.skip-link {
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.eyebrow {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
}

.eyebrow svg {
  width: 15px;
  height: 15px;
}

.button {
  border: 1px solid #0000;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, box-shadow .2s, transform .2s;
  display: inline-flex;
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.button:hover svg {
  transform: translateX(3px);
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 1px 0 #ffffff1c, 0 3px 5px #15151712;
}

.button-primary:hover {
  background: #303035;
  box-shadow: 0 5px 14px #15151720;
}

.button-secondary {
  background: #ffffff;
  border-color: #e2e2e6;
  box-shadow: 0 3px 5px #15151706;
}

.button-secondary:hover {
  background: #f4f4f6;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.brand {
  font-family: var(--sans);
  letter-spacing: -.06em;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 750;
  line-height: 1;
  display: inline-flex;
}

.brand svg {
  color: var(--accent);
  stroke-width: 2.6px;
  width: 25px;
  height: 25px;
}

.nav {
  z-index: 30;
  backdrop-filter: blur(18px);
  background: #fafafaed;
  border-bottom: 1px solid #ececef;
  transition: border-color .2s;
  position: sticky;
  top: 0;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  height: 84px;
  display: flex;
}

.nav-links {
  align-items: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.nav-links > a:not(.button) {
  color: #52525b;
  padding-block: 12px;
  transition: color .2s;
}

.nav-links > a:not(.button):hover {
  color: var(--accent);
}

.nav-links .nav-signin {
  margin-left: 20px;
}

.nav-links .button {
  min-height: 40px;
  padding: 8px 17px;
  font-size: 12px;
}

.menu-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: none;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: none;
}

.hero {
  text-align: center;
  background: radial-gradient(ellipse at 8% 65%, #ffe0ce80, transparent 42%), radial-gradient(ellipse at 94% 62%, #e6dafa90, transparent 40%);
  padding: 77px 0 44px;
  position: relative;
}

/* Decorative content graphics stay clear of the centered hero copy. */
.hero {
  isolation: isolate;
  overflow: hidden;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-art img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: normal;
  mask-image: linear-gradient(to bottom, transparent, #000 12% 90%, transparent);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--paper), transparent 18% 95%);
}

.hero .eyebrow {
  letter-spacing: .16em;
  justify-content: center;
  margin-bottom: 23px;
  font-size: 10px;
}

.hero h1 {
  font-weight: 800;
  max-width: 920px;
  margin-inline: auto;
}

.hero h1 span {
  color: #c74924;
  display: block;
}

.hero .button-primary {
  background: #ff946d;
  color: #261911;
  border-color: #ef825a;
  box-shadow: inset 0 1px 0 #ffffff50, 0 4px 9px #e2713920;
}

.hero .button-primary:hover {
  background: #ff8355;
}

.hero .lede {
  max-width: 510px;
  color: var(--muted);
  text-wrap: pretty;
  margin: 24px auto 27px;
  font-size: 16px;
  line-height: 1.75;
}

.cta-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  display: flex;
}

.trust {
  color: var(--muted);
  justify-content: center;
  align-items: center;
  gap: 21px;
  margin-top: 18px;
  font-size: 10px;
  display: flex;
}

.trust span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.trust svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

.preview-section {
  padding: 22px 0 0;
  position: relative;
}

.preview-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 15%, #f7b89345, transparent 42%), radial-gradient(ellipse at 80% 35%, #e3bbda48, transparent 44%);
  width: min(1440px, 100%);
  height: 92%;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  mask-image: linear-gradient(#0000, #000 25% 70%, #0000);
}

.preview-hint {
  font-family: var(--sans);
  color: #6b6b73;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: 4px;
  right: calc(50% - 510px);
  transform: rotate(5deg);
}

.preview-hint svg {
  width: 28px;
  height: 28px;
  margin: 0 0 0 80px;
  transform: rotate(70deg);
}

.app-window {
  background: #ffffff;
  border: 1px solid #dedee4;
  border-radius: 15px;
  max-width: 1040px;
  margin: 24px auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px #15151765, 0 0 0 7px #ffffff80;
}

.window-bar {
  color: #686870;
  letter-spacing: .02em;
  background: #f5f5f7;
  border-bottom: 1px solid #e7e7eb;
  justify-content: center;
  align-items: center;
  height: 35px;
  font-size: 9px;
  display: flex;
  position: relative;
}

.window-dots {
  gap: 5px;
  display: flex;
  position: absolute;
  left: 16px;
}

.window-dots i {
  background: #ceced5;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.window-bar > span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.window-bar svg {
  width: 10px;
  height: 10px;
}

.demo-layout {
  grid-template-columns: 164px minmax(0, 1fr);
  min-height: 405px;
  display: grid;
}

.demo-sidebar {
  background: #fafafa;
  border-right: 1px solid #e8e8ec;
  flex-direction: column;
  padding: 25px 14px 15px;
  display: flex;
}

.demo-sidebar .brand {
  margin-bottom: 27px;
  padding-inline: 9px;
  font-size: 25px;
}

.demo-sidebar .brand svg {
  width: 20px;
  height: 20px;
}

.side-item {
  color: #63636b;
  border-radius: 6px;
  align-items: center;
  gap: 9px;
  margin-bottom: 3px;
  padding: 8px 10px;
  font-size: 10px;
  display: flex;
}

.side-item svg {
  width: 13px;
  height: 13px;
}

.side-item.active {
  color: #151517;
  background: #ededf0;
  font-weight: 600;
}

.side-item small {
  color: #626269;
  margin-left: auto;
  font-size: 9px;
}

.side-label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #686870;
  margin: 24px 10px 9px;
  font-size: 8px;
}

.board-dot {
  background: #e9764f;
  border-radius: 2px;
  width: 6px;
  height: 6px;
  margin: 0 3px;
}

.board-dot.rose {
  background: #de8cad;
}

.board-dot.lilac {
  background: #9e92d2;
}

.sidebar-account {
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 25px 8px 0;
  font-size: 9px;
  display: flex;
}

.avatar {
  color: #574738;
  background: #f1e4dc;
  border-radius: 50%;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 9px;
  display: grid;
}

.sidebar-account small {
  color: #686870;
  font-size: 8px;
  display: block;
}

.demo-main {
  min-width: 0;
  padding: 23px 22px 17px;
}

.demo-title-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  display: flex;
}

.demo-title-row h2 {
  font-family: var(--sans);
  letter-spacing: -.03em;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.demo-title-row p {
  color: #686870;
  margin-top: 2px;
  font-size: 9px;
}

.demo-add {
  white-space: nowrap;
  background: #171719;
  color: #ffffff;
  border: 1px solid #171719;
  border-radius: 5px;
  flex-shrink: 0;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 9px;
  display: flex;
}

.demo-add svg {
  width: 11px;
  height: 11px;
}

.demo-toolbar {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.filter-group {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  display: flex;
}

.filter {
  color: #616169;
  background: none;
  border: 1px solid #0000;
  border-radius: 5px;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 6px 9px;
  font-size: 9px;
  line-height: 1.5;
  transition: background .15s;
  display: flex;
}

.filter svg {
  width: 11px;
  height: 11px;
}

.filter:hover {
  background: #f1f1f4;
}

.filter[aria-pressed="true"] {
  color: #151517;
  background: #efeff2;
  border-color: #e4e4e8;
}

.sort-control {
  color: #626269;
  background: #ffffff;
  border: 1px solid #e5e5e9;
  border-radius: 5px;
  max-width: 122px;
  min-height: 30px;
  padding: 6px 4px;
  font-size: 9px;
}

.feed-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 11px;
  min-height: 268px;
  display: grid;
}

.post {
  background: #ffffff;
  border: 1px solid #e4e4e8;
  border-radius: 8px;
  padding: 5px;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}

.post:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px #15151716;
}

.post-art {
  isolation: isolate;
  aspect-ratio: 3 / 4;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  padding: 17px 13px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.post-art .art-kicker {
  z-index: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-size: 6px;
  position: absolute;
  top: 14px;
  left: 13px;
  right: 13px;
}

.post-art .art-title {
  font-family: var(--display);
  letter-spacing: -.05em;
  z-index: 1;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.08;
}

.post-art .art-footer {
  z-index: 1;
  letter-spacing: .06em;
  font-size: 6px;
  position: absolute;
  bottom: 12px;
  left: 13px;
}

.art-green {
  color: #ffffff;
  background: #18181b;
}

.art-green:after {
  content: "";
  border: 1px solid #f89a7660;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -88px;
  right: -25px;
  box-shadow: 0 0 0 14px #18181b, 0 0 0 15px #f89a7640, 0 0 0 30px #18181b, 0 0 0 31px #f89a7630;
}

.art-peach {
  color: #321b12;
  aspect-ratio: 1;
  background: #ffad83;
}

.art-peach .art-title {
  font-size: 24px;
}

.art-peach .big-number {
  font-family: var(--display);
  color: #c2462033;
  font-size: 115px;
  line-height: 1;
  position: absolute;
  bottom: -27px;
  right: 6px;
}

.art-lilac {
  color: #252130;
  aspect-ratio: 3 / 4;
  background: #ceb9f4;
}

.art-lilac .art-title {
  max-width: 110px;
  font-size: 24px;
}

.art-lilac .sun {
  background: #a293d1;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  box-shadow: 0 0 0 12px #ceb9f4, 0 0 0 13px #a293d1;
}

.art-yellow {
  color: #382a18;
  aspect-ratio: 1;
  background: #e1ee9e;
}

.art-yellow .art-title {
  font-size: 23px;
}

.art-yellow .art-kicker {
  font-size: 6px;
}

.play-stamp {
  color: #ffffff;
  z-index: 2;
  background: #15151770;
  border-radius: 4px;
  align-items: center;
  gap: 3px;
  padding: 2px 4px;
  font-size: 7px;
  display: flex;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.play-stamp svg {
  width: 8px;
  height: 8px;
}

.save-post {
  z-index: 3;
  color: #38383f;
  background: #ffffffe6;
  border-radius: 50%;
  place-items: center;
  width: 26px;
  height: 26px;
  display: grid;
  position: absolute;
  top: 11px;
  right: 11px;
  box-shadow: 0 1px 5px #15151715;
}

.save-post svg {
  width: 12px;
  height: 12px;
}

.save-post[aria-pressed="true"] {
  color: #ffffff;
  background: #151517;
}

.save-post[aria-pressed="true"] svg {
  fill: currentColor;
}

.post-author {
  color: #686870;
  align-items: center;
  gap: 4px;
  margin: 9px 3px 4px;
  font-size: 7px;
  display: flex;
}

.post-author svg {
  width: 10px;
  height: 10px;
  margin-left: auto;
}

.tiny-avatar {
  color: #403646;
  background: #f0e8f4;
  border-radius: 50%;
  place-items: center;
  width: 13px;
  height: 13px;
  font-size: 5px;
  display: grid;
}

.post h3 {
  font-family: var(--sans);
  letter-spacing: 0;
  margin-inline: 3px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.45;
}

.post-metrics {
  color: #686870;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin: 8px 3px 3px;
  font-size: 7px;
  display: flex;
}

.outlier-pill {
  color: #a33d1c;
  background: #fff0e8;
  border-radius: 3px;
  padding: 2px 4px;
  font-weight: 600;
}

.demo-status {
  color: #686870;
  border-top: 1px solid #ededf0;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  padding-top: 11px;
  font-size: 8px;
  display: flex;
}

.demo-status svg {
  width: 10px;
  height: 10px;
}

.preview-caption {
  text-align: center;
  letter-spacing: .025em;
  color: #686870;
  margin-top: 24px;
  font-size: 10px;
  position: relative;
}

.platform-strip {
  text-align: center;
  padding: 45px 0 0;
}

.platform-strip > p {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #686870;
  margin-bottom: 19px;
  font-size: 10px;
}

.platform-logos {
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
}

.platform-logos span {
  color: #505058;
  letter-spacing: -.03em;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.platform-logos svg {
  width: 20px;
  height: 20px;
}

.section {
  padding-block: 105px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 49px;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  text-wrap: pretty;
  max-width: 490px;
  margin: 18px auto 0;
  font-size: 15px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  display: grid;
}

.feature-visual {
  background: #edf3d9;
  background-image: radial-gradient(#1515170c 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid #dce7c4;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  height: 206px;
  margin-bottom: 25px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-visual.peach {
  background: #ffe8db;
  border-color: #f5d7c7;
}

.feature-visual.lilac {
  background: #eee3fb;
  border-color: #e1d2f0;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.feature-card > p {
  color: var(--muted);
  max-width: 32ch;
  font-size: 13px;
  line-height: 1.8;
}

.profile-stack {
  gap: 7px;
  width: 222px;
  display: grid;
  transform: rotate(-4deg);
}

.profile-mini {
  background: #ffffff;
  border: 1px solid #e4e4e9;
  border-radius: 7px;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  font-size: 10px;
  display: flex;
  box-shadow: 0 5px 12px #15151710;
}

.profile-mini:nth-child(2) {
  transform: translateX(13px);
}

.profile-mini .avatar {
  background: #ffe6d8;
  width: 29px;
  height: 29px;
  font-size: 9px;
}

.profile-mini:nth-child(2) .avatar {
  background: #e9e2f7;
}

.profile-mini small {
  color: #71717a;
  font-size: 8px;
  line-height: 1.3;
  display: block;
}

.profile-mini > svg {
  color: #c64d27;
  width: 14px;
  height: 14px;
  margin-left: auto;
}

.sort-demo {
  width: 202px;
  box-shadow: var(--shadow);
  background: #ffffff;
  border: 1px solid #e5e5e9;
  border-radius: 9px;
  padding: 9px;
  transform: rotate(3deg);
}

.sort-demo > div {
  color: #616169;
  border-radius: 4px;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  font-size: 10px;
  display: flex;
}

.sort-demo > div svg {
  width: 13px;
  height: 13px;
}

.sort-demo .selected {
  color: #a94422;
  background: #fff0e9;
}

.sort-demo .selected svg:last-child {
  width: 11px;
  margin-left: auto;
}

.mini-folder {
  width: 160px;
  height: 103px;
  box-shadow: var(--shadow);
  color: #4e426b;
  background: #ffffff;
  border: 1px solid #dfdbe8;
  border-radius: 8px;
  padding: 19px 16px;
  position: absolute;
}

.mini-folder:before {
  content: "";
  background: inherit;
  border: 1px solid #dfdbe8;
  border-bottom: 0;
  border-radius: 7px 12px 0 0;
  width: 60px;
  height: 15px;
  position: absolute;
  top: -12px;
  left: -1px;
}

.mini-folder.back {
  background: #e3dcf1;
  transform: translate(-32px, -13px) rotate(-10deg);
}

.mini-folder.front {
  transform: translate(23px, 15px) rotate(5deg);
}

.mini-folder span {
  font-family: var(--sans);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 650;
  display: block;
}

.folder-swatches {
  gap: 5px;
  display: flex;
}

.folder-swatches i {
  background: #18181b;
  border-radius: 3px;
  width: 30px;
  height: 26px;
}

.folder-swatches i:nth-child(2) {
  background: #f3aa85;
}

.folder-swatches i:nth-child(3) {
  background: #cbbbea;
}

.split-section {
  border-top: 1px solid var(--line);
  padding-block: 92px;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  display: grid;
}

.section-copy h2 {
  max-width: 480px;
  margin-bottom: 22px;
}

.section-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 420px;
  font-size: 14px;
  line-height: 1.85;
}

.detail-list {
  gap: 19px;
  margin: 26px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
}

.detail-list li {
  color: var(--muted);
  gap: 12px;
  font-size: 12px;
  line-height: 1.8;
  display: flex;
}

.detail-list li > svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  margin-top: 3px;
}

.detail-list strong {
  color: #303037;
  margin-bottom: 2px;
  font-weight: 600;
  display: block;
}

.detail-list.inline strong {
  font-weight: 500;
  display: inline;
}

.visual-stage {
  background: #fff0e5;
  border: 1px solid #f0dfd1;
  border-radius: 15px;
  min-width: 0;
  padding: 39px 32px;
  position: relative;
}

.analytics-card {
  box-shadow: var(--shadow);
  background: #ffffff;
  border: 1px solid #e4e4e9;
  border-radius: 11px;
  padding: 24px;
  transform: rotate(2deg);
}

.card-overline {
  color: #686870;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 9px;
  display: flex;
}

.card-overline .badge {
  color: #b04826;
  background: #fff0e8;
  border: 1px solid #f6d5c7;
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 8px;
}

.analytics-title {
  font-family: var(--sans);
  letter-spacing: -.025em;
  margin-bottom: 5px;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.3;
}

.analytics-subtitle {
  color: #686870;
  font-size: 9px;
}

.bar-chart {
  background: repeating-linear-gradient(to top, #0000 0 31px, #eeeef1 31px 32px);
  border-bottom: 1px solid #e5e5e9;
  justify-content: space-between;
  align-items: flex-end;
  gap: 9px;
  height: 128px;
  margin-top: 18px;
  padding: 0 7px;
  display: flex;
  position: relative;
}

.bar-chart .bar {
  width: 24px;
  height: var(--height);
  background: #dddde4;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.bar-chart .bar:last-child {
  background: #e67148;
  width: 30px;
  height: 91%;
}

.bar-chart .bar:last-child span {
  color: #b24520;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
}

.chart-labels {
  color: #686870;
  justify-content: space-between;
  margin-top: 9px;
  font-size: 8px;
  display: flex;
}

.analytics-stats {
  border-top: 1px solid #e6e6ea;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 17px;
  display: grid;
}

.analytics-stats small {
  color: #686870;
  font-size: 8px;
  display: block;
}

.analytics-stats strong {
  font-family: var(--sans);
  letter-spacing: -.04em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

.analytics-stats > div:last-child strong {
  color: #c24c26;
}

.floating-note {
  max-width: 255px;
  box-shadow: var(--shadow);
  color: #696971;
  background: #ffffff;
  border: 1px solid #e4e4e9;
  border-radius: 8px;
  align-items: center;
  gap: 9px;
  margin: 18px -9px -14px auto;
  padding: 12px 16px;
  font-size: 10px;
  display: flex;
  position: relative;
  transform: rotate(-3deg);
}

.floating-note svg {
  color: #d15b33;
  width: 21px;
  height: 21px;
}

.floating-note strong {
  color: #35353d;
  font-weight: 500;
  display: block;
}

.boards-section .split {
  grid-template-columns: 1fr 1fr;
}

.boards-stage {
  background: #eee7fa;
  border-color: #e1d6f0;
  padding: 37px 25px;
}

.boards-window {
  box-shadow: var(--shadow);
  background: #ffffff;
  border: 1px solid #e5e3e9;
  border-radius: 10px;
  padding: 20px;
  transform: rotate(-2deg);
}

.boards-window-title {
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.boards-window-title svg {
  width: 16px;
  height: 16px;
}

.board-row {
  border: 1px solid #e8e6ec;
  border-radius: 7px;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  padding: 11px 12px;
  display: flex;
}

.board-cover {
  color: #bd4e2b;
  background: #f0e8f4;
  border-radius: 4px;
  flex-shrink: 0;
  place-items: center;
  width: 40px;
  height: 43px;
  display: grid;
}

.board-cover svg {
  width: 19px;
  height: 19px;
}

.board-cover.clay {
  color: #b25532;
  background: #ffe6d6;
}

.board-cover.purple {
  color: #7963a5;
  background: #e9e0f7;
}

.board-row strong {
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.board-row small {
  color: #686870;
  margin-top: 2px;
  font-size: 8px;
  display: block;
}

.board-row > svg {
  color: #92929b;
  width: 13px;
  margin-left: auto;
}

.board-row.new {
  color: #686870;
  background: #fafafa;
  border-style: dashed;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0;
  padding: 10px;
  font-size: 9px;
}

.board-row.new svg {
  width: 11px;
  margin: 0;
}

.pin-note {
  max-width: 204px;
  box-shadow: var(--shadow);
  color: #5c526c;
  background: #ffffff;
  border: 1px solid #e8e1ee;
  border-radius: 8px;
  align-items: center;
  gap: 9px;
  margin: 15px -9px -14px auto;
  padding: 12px 14px;
  font-size: 10px;
  display: flex;
  transform: rotate(4deg);
}

.pin-note svg {
  color: #8b68af;
  width: 15px;
}

.how-section {
  border-block: 1px solid var(--line);
  background: #171719;
  background-image: radial-gradient(ellipse at 0 100%, #de78441c, transparent 50%), radial-gradient(ellipse at 100% 0, #9d78d81b, transparent 50%);
  color: #ffffff;
  padding-block: 84px;
}

.how-section .eyebrow {
  color: #f3b59c;
}

.how-section .section-head p:not(.eyebrow) {
  color: #b2b2bc;
}

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

.step {
  counter-increment: steps;
  position: relative;
}

.step-top {
  align-items: center;
  height: 45px;
  margin-bottom: 22px;
  display: flex;
  position: relative;
}

.step-top:before {
  content: "0" counter(steps);
  font-family: var(--sans);
  color: #ffd3bc;
  background: #242427;
  border: 1px solid #414146;
  border-radius: 10px;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 21px;
  font-weight: 650;
  display: grid;
}

.step-top:after {
  content: "";
  background: #3d3d43;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 61px;
  right: 0;
}

.step:nth-child(1) .step-top:before {
  background: #ffaf89;
  color: #342018;
  border-color: #ffc9ad;
}

.step:nth-child(2) .step-top:before {
  background: #ccbbf0;
  color: #302440;
  border-color: #dfd2fa;
}

.step:nth-child(3) .step-top:before {
  background: #deed9d;
  color: #29301c;
  border-color: #eaf6ba;
}

.step h3 {
  max-width: 240px;
  margin-bottom: 13px;
  font-size: 25px;
}

.step p {
  color: #b2b2bc;
  max-width: 290px;
  font-size: 13px;
  line-height: 1.8;
}

.how-foot {
  text-align: center;
  color: #aeafb9;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 45px;
  font-size: 11px;
  display: flex;
}

.how-foot svg {
  width: 14px;
  height: 14px;
}

.faq-layout {
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  display: grid;
}

.faq-intro h2 {
  max-width: 270px;
}

.faq-intro > p:last-child {
  color: var(--muted);
  max-width: 240px;
  margin-top: 19px;
  font-size: 13px;
  line-height: 1.8;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  list-style: none;
  display: flex;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--accent);
}

.faq-list summary svg {
  color: #8c8c96;
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  max-width: 530px;
  padding: 0 35px 23px 0;
  font-size: 12px;
  line-height: 1.9;
}

.closing {
  padding: 0 0 75px;
}

.closing-panel {
  background: #151517;
  background-image: radial-gradient(ellipse at 80% 85%, #6d37652c, transparent 55%);
  color: #ffffff;
  border: 1px solid #2d2d32;
  border-radius: 17px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 377px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.closing-copy {
  z-index: 1;
  padding: 54px 0 54px 55px;
  position: relative;
}

.closing-copy .eyebrow {
  color: #f3b59c;
  margin-bottom: 16px;
  font-size: 10px;
}

.closing h2 {
  max-width: 450px;
  font-size: clamp(36px, 4vw, 49px);
}

.closing p:not(.eyebrow) {
  color: #b6b6c0;
  max-width: 320px;
  margin: 18px 0 25px;
  font-size: 13px;
}

.closing .button {
  background: #dfee9f;
  color: #151517;
  min-height: 45px;
  font-size: 12px;
}

.closing .button:hover {
  background: #d1e680;
}

.closing-art {
  background: transparent;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 360px;
  display: flex;
  position: relative;
}

.closing-art img {
  object-fit: cover;
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
}

.footer {
  padding: 0 0 30px;
}

.footer-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 12px 0 38px;
  display: flex;
}

.footer .brand {
  font-size: 30px;
}

.footer-tagline {
  color: #686870;
  margin-top: 12px;
  font-size: 11px;
}

.footer nav a {
  align-items: center;
  min-height: 44px;
  display: inline-flex;
}

.footer nav {
  color: #63636c;
  gap: 30px;
  padding-top: 9px;
  font-size: 11px;
  display: flex;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #686870;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 10px;
  display: flex;
}

.footer-bottom span:last-child {
  align-items: center;
  gap: 6px;
  display: flex;
}

.footer-bottom svg {
  width: 12px;
  height: 12px;
}

.toast {
  color: #ffffff;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  background: #151517;
  border-radius: 9px;
  max-width: calc(100% - 32px);
  padding: 11px 19px;
  font-size: 12px;
  transition: opacity .2s, transform .2s;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  box-shadow: 0 7px 30px #15151725;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%);
}

@media (width >= 1500px) {
  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 84px;
  }
}

@media (width <= 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links .nav-signin {
    margin-left: 0;
  }

  .split, .faq-layout {
    gap: 48px;
  }

  .preview-hint {
    right: 45px;
  }

  .demo-sidebar {
    padding-inline: 10px;
  }

  .demo-layout {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .demo-main {
    padding: 20px 16px 16px;
  }

  .post-art {
    padding: 15px 10px;
  }

  .post-art .art-title {
    font-size: 21px;
  }

  .post-art .art-kicker {
    left: 10px;
  }

  .feed-grid {
    gap: 8px;
  }

  .feature-grid {
    gap: 23px;
  }

  .feature-visual {
    height: 190px;
  }

  .visual-stage {
    padding: 30px 23px;
  }

  .closing-copy {
    padding-left: 35px;
  }

  .closing-art img {
    object-position: 57% center;
  }
}

@media (width <= 800px) {
  .nav-inner {
    height: 73px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links > a:nth-child(2) {
    display: none;
  }

  .brand {
    font-size: 29px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 61px;
  }

  .demo-layout {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .demo-sidebar .brand {
    padding-inline: 6px;
    font-size: 22px;
  }

  .demo-toolbar {
    align-items: flex-start;
  }

  .filter {
    padding: 6px;
    font-size: 8px;
  }

  .filter svg {
    display: none;
  }

  .sort-control {
    max-width: 106px;
    font-size: 8px;
  }

  .feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 300px;
  }

  .post-art {
    aspect-ratio: 1.15 !important;
  }

  .post-art .art-title {
    max-width: 120px;
    font-size: 23px;
  }

  .post-art .art-kicker {
    font-size: 5px;
  }

  .post-art .art-footer {
    display: none;
  }

  .post h3 {
    font-size: 9px;
  }

  .demo-status {
    margin-top: 12px;
  }

  .section {
    padding-block: 80px;
  }

  .feature-grid {
    gap: 19px;
  }

  .feature-visual {
    height: 168px;
  }

  .profile-stack {
    width: 175px;
    transform: scale(.86) rotate(-4deg);
  }

  .sort-demo {
    width: 170px;
    transform: scale(.88) rotate(3deg);
  }

  .mini-folder {
    transform-origin: center;
    scale: .8;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card > p {
    font-size: 12px;
  }

  .split {
    gap: 35px;
  }

  .section-copy h2 {
    font-size: 37px;
  }

  .visual-stage {
    padding: 26px 15px;
  }

  .analytics-card {
    padding: 17px;
  }

  .analytics-title {
    font-size: 21px;
  }

  .analytics-stats strong {
    font-size: 22px;
  }

  .card-overline {
    font-size: 8px;
  }

  .card-overline .badge {
    padding: 3px 5px;
    font-size: 7px;
  }

  .floating-note {
    max-width: 220px;
    padding: 10px;
    font-size: 9px;
  }

  .boards-window {
    padding: 15px;
  }

  .board-row {
    padding: 9px;
  }

  .board-cover {
    width: 32px;
  }

  .board-row strong {
    font-size: 10px;
  }

  .board-row small {
    font-size: 7px;
  }

  .steps {
    gap: 30px;
  }

  .step h3 {
    font-size: 22px;
  }

  .step p {
    font-size: 12px;
  }

  .faq-layout {
    grid-template-columns: .75fr 1.25fr;
    gap: 40px;
  }

  .faq-intro h2 {
    font-size: 37px;
  }

  .closing-copy {
    padding: 40px 0 40px 30px;
  }

  .closing h2 {
    font-size: 37px;
  }

  .closing-art {
    min-height: 340px;
  }

  .footer nav {
    gap: 20px;
  }
}

@media (width <= 620px) {
  html {
    scroll-padding-top: 88px;
  }

  .wrap {
    width: calc(100% - 40px);
  }

  .nav-inner {
    gap: 13px;
    height: 70px;
  }

  .brand {
    font-size: 30px;
  }

  .brand svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    margin-left: auto;
    display: flex;
  }

  .nav-links {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 22px 23px;
    font-size: 14px;
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    box-shadow: 0 15px 20px #1515170a;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:nth-child(2) {
    display: block;
  }

  .nav-links > a:not(.button) {
    padding: 12px 0;
  }

  .nav-links .button {
    min-height: 44px;
    margin-top: 10px;
    font-size: 13px;
  }

  .hero {
    padding: 46px 0 32px;
  }

  .hero .eyebrow {
    letter-spacing: .1em;
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1 {
    letter-spacing: -.05em;
    font-size: clamp(38px, 9.5vw, 57px);
    line-height: 1.12;
  }

  .hero .lede {
    max-width: 345px;
    margin: 22px auto 25px;
    font-size: 14px;
    line-height: 1.8;
  }

  .button {
    gap: 8px;
    min-height: 47px;
    padding: 10px 17px;
    font-size: 12px;
  }

  .cta-row {
    gap: 9px;
  }

  .trust {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 17px;
    font-size: 9px;
  }

  .trust svg {
    width: 12px;
    height: 12px;
  }

  .preview-section {
    padding-top: 6px;
  }

  .preview-hint {
    display: none;
  }

  .app-window {
    border-radius: 11px;
    margin-top: 14px;
    box-shadow: 0 20px 40px -28px #15151765, 0 0 0 4px #ffffff90;
  }

  .window-bar {
    height: 29px;
    font-size: 8px;
  }

  .demo-layout {
    min-height: 0;
    display: block;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-main {
    padding: 18px 13px 12px;
  }

  .demo-title-row {
    margin-bottom: 13px;
  }

  .demo-title-row h2 {
    font-size: 18px;
  }

  .demo-title-row p {
    font-size: 8px;
  }

  .demo-add {
    min-height: 44px;
    padding: 5px 8px;
    font-size: 9px;
  }

  .demo-toolbar {
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
  }

  .filter-group {
    gap: 3px;
  }

  .filter {
    min-height: 44px;
    padding: 7px 6px;
    font-size: 10px;
  }

  .sort-control {
    max-width: 125px;
    min-height: 44px;
    font-size: 10px;
  }

  .feed-grid {
    gap: 10px;
    min-height: 280px;
  }

  .post-art {
    padding: 25px 12px;
    aspect-ratio: 3 / 4 !important;
  }

  .post-art .art-title {
    max-width: 140px;
    font-size: clamp(23px, 6vw, 33px);
  }

  .post-art .art-kicker {
    font-size: 5px;
    top: 11px;
    left: 12px;
  }

  .art-lilac .sun {
    width: 70px;
    height: 70px;
  }

  .post-author {
    font-size: 7px;
  }

  .post h3 {
    font-size: 10px;
  }

  .post-metrics {
    margin-top: 7px;
    font-size: 8px;
  }

  .save-post {
    width: 29px;
    height: 29px;
  }

  .save-post svg {
    width: 13px;
    height: 13px;
  }

  .save-post:before {
    content: "";
    position: absolute;
    inset: -8px;
  }

  .art-peach .art-title {
    font-size: 20px;
  }

  .art-yellow .art-title {
    font-size: 23px;
  }

  .demo-status {
    font-size: 8px;
  }

  .preview-caption {
    margin-top: 19px;
    font-size: 9px;
  }

  .platform-strip {
    padding-top: 33px;
  }

  .platform-strip > p {
    letter-spacing: .1em;
    font-size: 8px;
  }

  .platform-logos {
    flex-wrap: wrap;
    gap: 20px;
  }

  .platform-logos span {
    gap: 6px;
    font-size: 12px;
  }

  .platform-logos svg {
    width: 16px;
    height: 16px;
  }

  .section {
    padding-block: 67px;
  }

  .section-head {
    margin-bottom: 33px;
  }

  .section-head h2 {
    font-size: 35px;
  }

  .section-head p:not(.eyebrow) {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.85;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 0;
    display: grid;
  }

  .feature-visual {
    height: 210px;
    margin-bottom: 21px;
  }

  .profile-stack {
    width: 224px;
    transform: rotate(-4deg);
  }

  .sort-demo {
    width: 216px;
    transform: rotate(3deg);
  }

  .mini-folder {
    scale: 1;
  }

  .feature-card h3 {
    margin-bottom: 9px;
    font-size: 26px;
  }

  .feature-card > p {
    max-width: 42ch;
    font-size: 13px;
  }

  .split-section {
    padding-block: 65px;
  }

  .split, .boards-section .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-copy h2 {
    max-width: 360px;
    margin-bottom: 19px;
    font-size: 38px;
  }

  .section-copy > p:not(.eyebrow) {
    max-width: 390px;
    font-size: 13px;
  }

  .detail-list {
    gap: 16px;
    margin: 23px 0 20px;
  }

  .detail-list li {
    max-width: 390px;
    font-size: 12px;
  }

  .visual-stage {
    width: 100%;
    max-width: 470px;
    min-height: 0;
    margin: auto;
    padding: 32px 26px;
  }

  .analytics-card {
    padding: 22px;
  }

  .analytics-title {
    font-size: 25px;
  }

  .card-overline {
    font-size: 9px;
  }

  .card-overline .badge {
    font-size: 8px;
  }

  .analytics-stats strong {
    font-size: 27px;
  }

  .floating-note {
    max-width: 255px;
    padding: 12px 15px;
    font-size: 10px;
  }

  .boards-section .section-copy {
    grid-row: 1;
  }

  .boards-window {
    padding: 22px;
  }

  .board-cover {
    width: 40px;
  }

  .board-row {
    padding: 11px;
  }

  .board-row strong {
    font-size: 11px;
  }

  .board-row small {
    font-size: 8px;
  }

  .how-section {
    padding-block: 62px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .step {
    padding-left: 65px;
  }

  .step-top {
    margin: 0;
    position: absolute;
    top: 1px;
    left: 0;
  }

  .step-top:before {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .step-top:after {
    width: 1px;
    height: calc(100% + 75px);
    top: 53px;
    left: 20px;
    right: auto;
  }

  .step:last-child .step-top:after {
    display: none;
  }

  .step h3 {
    max-width: 290px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .step p {
    max-width: 330px;
    font-size: 13px;
  }

  .how-foot {
    margin-top: 36px;
    font-size: 10px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-intro h2 {
    max-width: 310px;
    font-size: 37px;
  }

  .faq-intro > p:last-child {
    max-width: 310px;
    margin-top: 15px;
    font-size: 12px;
  }

  .faq-list summary {
    gap: 20px;
    padding: 20px 0;
    font-size: 12px;
  }

  .faq-list details p {
    padding-right: 23px;
    font-size: 12px;
  }

  .closing {
    padding-bottom: 48px;
  }

  .closing-panel {
    grid-template-columns: 1fr;
  }

  .closing-copy {
    padding: 36px 28px 18px;
  }

  .closing h2 {
    max-width: 340px;
    font-size: 38px;
  }

  .closing p:not(.eyebrow) {
    max-width: 290px;
    margin-top: 16px;
    font-size: 13px;
  }

  .closing-art {
    height: 255px;
    min-height: 0;
  }

  .closing-art img {
    object-fit: cover;
    object-position: center 53%;
  }

  .footer-top {
    flex-direction: column;
    gap: 23px;
    padding-bottom: 28px;
  }

  .footer nav {
    flex-wrap: wrap;
    gap: 23px;
    font-size: 11px;
  }

  .footer-tagline {
    font-size: 11px;
  }

  .footer-bottom {
    gap: 16px;
    font-size: 9px;
  }

  .footer-bottom span:last-child {
    max-width: 160px;
  }
}

@media (width <= 360px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .eyebrow {
    font-size: 8px;
  }

  .button {
    padding-inline: 14px;
    font-size: 11px;
  }

  .trust {
    gap: 10px;
    font-size: 8px;
  }

  .demo-main {
    padding-inline: 10px;
  }

  .filter {
    padding-inline: 5px;
    font-size: 8px;
  }

  .sort-control {
    font-size: 8px;
  }

  .post-art {
    padding-inline: 9px;
  }

  .post-art .art-title {
    font-size: 22px;
  }

  .art-peach .art-title {
    font-size: 18px;
  }

  .demo-title-row h2 {
    font-size: 16px;
  }

  .visual-stage {
    padding: 24px 17px;
  }

  .analytics-card {
    padding: 17px;
  }

  .closing-copy {
    padding-inline: 23px;
  }

  .closing h2 {
    font-size: 35px;
  }

  .platform-logos {
    gap: 16px;
  }

  .platform-logos span {
    font-size: 11px;
  }
}

/* Below desktop width the illustration gets its own space beneath the CTA. */
@media (width <= 1050px) {
  .hero {
    padding-bottom: 284px;
  }

  .hero-art {
    top: auto;
    height: 260px;
  }

  .hero-art img {
    width: 100%;
    max-width: none;
    height: 260px;
    object-fit: contain;
  }

  .hero-art::after {
    background: linear-gradient(0deg, var(--paper), transparent 22%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }

  .button:hover, .post:hover {
    transform: none;
  }
}
