:root {
  --orange: #ff5c00;
  --black: #000000;
  --panel: #13151c;
  --panel-2: #1c1d23;
  --text: #f9f8fd;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

.page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  padding: 28px clamp(18px, 4vw, 56px) 64px;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 92, 0, 0.22), transparent 28%),
    linear-gradient(180deg, #0b0b0d 0%, #000 68%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brandMark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  font-weight: 900;
}

.navLink {
  color: var(--muted);
  font-size: 14px;
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  max-width: 1180px;
  min-height: calc(100vh - 96px);
  margin: 0 auto;
}

.heroCopy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.lead,
.sectionHeader p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.heroActions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primaryButton,
.searchForm button {
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  cursor: pointer;
  font-weight: 800;
}

.primaryButton {
  padding: 15px 20px;
}

.statusPill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #cfcfcf;
  font-size: 14px;
}

.phonePreview {
  position: relative;
  width: min(360px, 100%);
  min-height: 680px;
  margin: 40px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
    url("https://static.zara.net/assets/public/e641/5235/f95f4dc1ac20/c422c0fcff6b/04043009800-p/04043009800-p.jpg?ts=1780043304240&w=750")
      center / cover;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.phoneStatus {
  height: 42px;
  background: #000;
}

.scanFrame {
  position: absolute;
  top: 210px;
  left: 32px;
  right: 32px;
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: white;
}

.resultCard {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.resultCard img {
  width: 86px;
  height: 112px;
  object-fit: cover;
  border-radius: 10px;
}

.resultCard strong,
.resultCard span {
  display: block;
}

.resultCard span {
  margin-top: 8px;
  color: var(--muted);
}

.searchSection {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px clamp(18px, 4vw, 56px);
}

.sectionHeader {
  margin-bottom: 28px;
}

.searchForm {
  display: grid;
  grid-template-columns: 180px minmax(220px, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.searchForm label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.searchForm input,
.searchForm select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
  color: var(--text);
  font: inherit;
  min-height: 48px;
  padding: 0 14px;
}

.searchForm button {
  min-height: 48px;
  align-self: end;
  padding: 0 22px;
}

.message {
  min-height: 24px;
  margin: 18px 0;
  color: var(--muted);
}

.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.productCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
}

.productCard img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #08080a;
}

.productBody {
  padding: 16px;
}

.productBody h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.meta,
.sizes {
  color: var(--muted);
  line-height: 1.5;
}

.productBody a {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 800;
}

@media (max-width: 820px) {
  .heroGrid,
  .searchForm {
    grid-template-columns: 1fr;
  }

  .heroGrid {
    padding-top: 42px;
  }

  .phonePreview {
    min-height: 560px;
  }
}
