:root {
  --brand: #ff4f00;
  --brand-dark: #e34500;
  --ink: #101014;
  --muted: #626977;
  --line: #e7e8ec;
  --panel: #ffffff;
  --soft: #fff3ec;
  --shadow: 0 18px 44px rgba(16, 16, 20, 0.13);
  --soft-shadow: 0 12px 30px rgba(16, 16, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 34% 60%, rgba(255, 79, 0, 0.12), transparent 27%),
    radial-gradient(circle at 76% 48%, rgba(255, 79, 0, 0.045), transparent 30%),
    #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lang-bar {
  position: absolute;
  top: 14px;
  right: 24px;
  z-index: 20;
}

.lang-link {
  display: inline-block;
  padding: 4px 10px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: border-color 0.15s, color 0.15s;
}

.lang-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(450px, 0.9fr);
  min-height: calc(100vh - 58px);
  border-bottom: 1px solid var(--line);
}

.hero-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 44px 12px;
  overflow: hidden;
}

.hero-side::after {
  content: "";
  position: absolute;
  inset: auto 13% 0 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 0, 0.22), transparent);
}

.info-side {
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 48px 22px;
}

.app-mark {
  position: absolute;
  left: 42px;
  top: 24px;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(255, 79, 0, 0.2);
  overflow: hidden;
  z-index: 4;
}

.app-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-block {
  width: min(780px, 100%);
  text-align: center;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.wordmark {
  width: min(430px, 68%);
  margin: 0 auto 4px;
  mix-blend-mode: multiply;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 2.9vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 860;
}

.category-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px auto 0;
  max-width: 800px;
}

.category-item {
  display: grid;
  gap: 7px;
  min-width: 64px;
  justify-items: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
}

.category-item svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.separator {
  display: block;
  width: 2px;
  height: 26px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.74;
}

.phone-scene {
  position: relative;
  width: min(720px, 100%);
  height: 390px;
  margin-top: 36px;
  isolation: isolate;
}

.phone-scene::before,
.phone-scene::after {
  display: none;
}

.trail-layer {
  position: absolute;
  inset: -12px -28px -12px -28px;
  width: calc(100% + 56px);
  height: calc(100% + 24px);
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}

.trail {
  fill: none;
  stroke: rgba(255, 79, 0, 0.62);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
}

.phone-scene::before {
  left: 62px;
  top: 92px;
  width: 154px;
  height: 138px;
  transform: rotate(18deg);
}

.phone-scene::after {
  right: 26px;
  bottom: 88px;
  width: 205px;
  height: 126px;
  transform: rotate(-18deg);
}

.trade-card {
  position: absolute;
  width: 212px;
  min-height: 312px;
  background: var(--panel);
  border: 4px solid #121212;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trade-card-main {
  left: 50%;
  top: 12px;
  width: 244px;
  min-height: 374px;
  transform: translateX(-50%);
  z-index: 4;
}

.trade-card-left {
  left: 140px;
  top: 96px;
  transform: rotate(-5deg);
  z-index: 2;
}

.trade-card-right {
  right: 116px;
  top: 100px;
  transform: rotate(5deg);
  z-index: 1;
}

.trade-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 8px;
  font-size: 10px;
}

.trade-card-header > button,
.item-row button {
  border: 0;
  background: transparent;
  color: #34363d;
}

.trade-card-header > button {
  margin-left: auto;
  font-size: 16px;
  padding: 0;
}

.avatar {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}

.avatar-priya { background: linear-gradient(145deg, #69523f, #2c7a51); }
.avatar-alex { background: linear-gradient(145deg, #2b3440, #ff4f00); }
.avatar-jordan { background: linear-gradient(145deg, #1d4ed8, #111116); }

.trade-card-header strong,
.trade-card-header small {
  display: block;
}

.trade-card-header small {
  color: var(--muted);
  margin-top: 1px;
}

.item-photo {
  display: grid;
  place-items: center;
  height: 132px;
  margin: 0 10px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f8fa, #eceef2);
}

.item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trade-card-main .item-photo {
  height: 152px;
  margin: 0 12px;
}

.console-photo {
  background: linear-gradient(180deg, #f7f8fa, #eceef2);
}

.bike-photo {
  background: linear-gradient(180deg, #f7f8fa, #eceef2);
}

.car-photo {
  background: linear-gradient(180deg, #f7f8fa, #eceef2);
}

.trade-card-body {
  padding: 9px 12px 12px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.item-row strong,
.item-row small {
  display: block;
}

.item-row strong {
  font-size: 12px;
  line-height: 1.2;
}

.item-row small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}

.item-row button {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  padding: 0;
}

.item-row button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
}

.trade-card-body p {
  margin: 11px 0 7px;
  font-size: 11px;
  font-weight: 760;
}

.mini-items {
  display: flex;
  gap: 7px;
}

.mini-items span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f2f3f5;
  color: #21242b;
}

.mini-items svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.15;
}

.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.actions button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #4b5563;
  box-shadow: 0 10px 24px rgba(17, 17, 22, 0.1);
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.actions button svg {
  width: 22px;
  height: 22px;
}

.actions .primary-action {
  background: var(--brand);
  color: #fff;
}

.floating-pill,
.bubble {
  position: absolute;
  z-index: 8;
  background: #fff;
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 13px;
}

.floating-pill svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  stroke-width: 3;
}

.offer-pill {
  left: 12px;
  top: 196px;
}

.chat-pill {
  right: 4px;
  top: 162px;
  gap: 12px;
  padding-right: 8px;
}

.pill-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--brand);
  box-shadow: 0 8px 18px rgba(16, 16, 20, 0.16);
}

.pill-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bubble {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--brand);
}

.bubble svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.6;
}

.pin-bubble {
  left: 68px;
  top: 36px;
}

.heart-bubble {
  right: 84px;
  top: 36px;
  color: #ff3f24;
}

.swap-bubble {
  right: 26px;
  bottom: 62px;
  transform: rotate(-10deg);
}

.info-panel {
  width: min(540px, 100%);
}

.mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--brand);
  color: var(--brand);
  border-radius: 999px;
  padding: 8px 17px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 840;
}

.mobile-badge svg {
  width: 15px;
  height: 15px;
  stroke-width: 3;
}

.info-panel h2 {
  margin: 22px 0 30px;
  font-size: clamp(38px, 3.15vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 860;
}

.benefit-list {
  display: grid;
  gap: 24px;
}

.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  color: var(--brand);
  display: grid;
  place-items: start center;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.15;
}

.benefit h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.32;
  max-width: 370px;
}

.download-box {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.download-box h3 {
  color: var(--brand);
  font-size: 22px;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 160px;
  color: #fff;
  background: #050505;
  border-radius: 9px;
  padding: 8px 13px 9px;
  text-align: left;
  line-height: 1.02;
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.16);
  font-size: 16px;
  font-weight: 700;
}

.store-button small,
.store-button span span {
  display: block;
}

.store-button small {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2px;
  font-weight: 650;
}

.store-logo {
  font-size: 25px;
  line-height: 1;
}

.store-logo.play {
  color: #35d161;
  font-size: 25px;
}

.mobile-note {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mobile-note svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  min-height: 58px;
  padding: 10px 44px;
  color: #737782;
  font-size: 14px;
  background: rgba(255,255,255,0.88);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer a:hover {
  color: var(--brand-dark);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #424650;
  font-size: 22px;
}


@media (min-width: 1261px) {
  html,
  body {
    min-height: 100svh;
  }

  body {
    overflow: hidden;
  }

  .page-shell {
    height: calc(100svh - 58px);
    min-height: 0;
  }

  .hero-side,
  .info-side {
    min-height: 0;
  }

  .site-footer {
    height: 58px;
  }
}

@media (min-width: 1261px) and (max-height: 760px) {
  .hero-side {
    padding-top: 30px;
  }

  .app-mark {
    width: 66px;
    height: 66px;
    border-radius: 16px;
  }

  .brand-block {
    margin-top: 14px;
  }

  .wordmark {
    width: min(390px, 64%);
  }

  h1 {
    font-size: clamp(31px, 2.6vw, 43px);
  }

  .category-strip {
    margin-top: 18px;
  }

  .category-item svg {
    width: 26px;
    height: 26px;
  }

  .phone-scene {
    height: 350px;
    margin-top: 8px;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .info-side {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .info-panel h2 {
    margin: 18px 0 24px;
    font-size: clamp(35px, 2.95vw, 48px);
  }

  .benefit-list {
    gap: 20px;
  }

  .download-box {
    margin-top: 26px;
    padding-top: 22px;
  }
}

@media (max-width: 1260px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .info-side {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .info-panel {
    text-align: center;
  }

  .benefit {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .benefit p {
    max-width: 520px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero-side,
  .info-side {
    padding: 28px 20px;
  }

  .app-mark {
    position: static;
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }

  .brand-block {
    margin-top: 0;
  }

  .wordmark {
    width: min(420px, 94%);
    margin-bottom: 12px;
  }

  h1 {
    font-size: 38px;
  }

  .category-strip {
    gap: 13px;
    margin-top: 24px;
  }

  .separator {
    display: none;
  }

  .category-item {
    min-width: 72px;
  }

  .phone-scene {
    height: auto;
    display: grid;
    gap: 20px;
    margin-top: 36px;
  }

  .phone-scene::before,
  .phone-scene::after,
  .floating-pill,
  .bubble {
    display: none;
  }

  .trade-card,
  .trade-card-main,
  .trade-card-left,
  .trade-card-right {
    position: relative;
    inset: auto;
    width: min(340px, 100%);
    min-height: auto;
    transform: none;
    margin: 0 auto;
  }

  .trade-card-left,
  .trade-card-right {
    display: none;
  }

  .info-panel h2 {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .benefit-list {
    gap: 28px;
  }

  .store-button {
    max-width: 260px;
  }

  .site-footer {
    padding: 22px 20px 30px;
  }

  .site-footer nav {
    gap: 16px 22px;
  }
}


/* Device frame mockups */
.phone-scene {
  position: relative;
  width: min(760px, 100%);
  height: 470px;
  margin-top: 14px;
  isolation: isolate;
}

.device {
  position: absolute;
  width: 224px;
  aspect-ratio: 1012 / 2048;
  filter: drop-shadow(0 18px 38px rgba(16, 16, 20, 0.16));
}

.device-main {
  left: 50%;
  top: 22px;
  width: 278px;
  transform: translateX(-50%);
  z-index: 4;
}

.device-left {
  left: 140px;
  top: 122px;
  transform: rotate(-8deg);
  z-index: 2;
}

.device-right {
  right: 118px;
  top: 126px;
  transform: rotate(8deg);
  z-index: 1;
}

.device-screen,
.device-frame {
  position: absolute;
  inset: 0;
}

.device-screen {
  left: 5.55%;
  right: 5.55%;
  top: 1.6%;
  bottom: 3.2%;
  border-radius: 48px;
  overflow: hidden;
  background: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.device-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 16px 8px;
  font-size: 11px;
}

.screen-header strong,
.screen-header small {
  display: block;
}

.screen-header strong {
  font-size: 14px;
}

.screen-header small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 1px;
}

.screen-more {
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 18px;
  color: #3d4048;
  padding: 0;
}

.screen-photo {
  display: block;
  width: calc(100% - 24px);
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7f8fa, #eceef2);
  object-fit: cover;
  height: 38%;
}

.device-left .screen-photo,
.device-right .screen-photo {
  height: 41%;
}

.screen-info {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.screen-info strong,
.screen-info small {
  display: block;
}

.screen-info strong {
  font-size: 16px;
  line-height: 1.2;
}

.screen-info small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.screen-info p {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.screen-info-main p {
  margin: 12px 0 8px;
  color: var(--ink);
  font-weight: 760;
  font-size: 12px;
}

.screen-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.screen-row button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #34363d;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.screen-row button svg {
  width: 18px;
  height: 18px;
}

.screen-row button[aria-label="Save listing"] svg,
.screen-row button[aria-label="Opslaan"] svg {
  fill: #ff3f24;
  stroke: none;
}

.device-main .actions {
  margin-top: auto;
}

@media (min-width: 1261px) and (max-height: 760px) {
  .phone-scene {
    height: 410px;
    transform: scale(0.9);
    transform-origin: top center;
  }
}

@media (max-width: 760px) {
  .phone-scene {
    height: auto;
    display: grid;
    gap: 22px;
    margin-top: 36px;
  }

  .device,
  .device-main,
  .device-left,
  .device-right {
    position: relative;
    inset: auto;
    width: min(300px, 100%);
    transform: none;
    margin: 0 auto;
  }

  .device-left,
  .device-right {
    display: none;
  }

  .device-screen {
    bottom: 1%;
  }

  .device-main .actions {
    margin-bottom: 12px;
  }
}
