:root {
  color-scheme: dark;
  --bg: #000000;
  --ink: #f4f5f6;
  --muted: #d6d8dc;
  --soft: #c2c5ca;
  --orange: #ff6a00;
  --orange-2: #ff851f;
  --orange-ink: #140800;
  --card: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
:focus { outline: none; }
.focus-ring:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 50% -8%, rgba(255, 106, 0, 0.18), transparent 58%),
    var(--bg);
}

.wrap {
  width: min(42rem, calc(100% - 2rem));
  margin: 0 auto;
}

.lang-switch {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  color: #e4e6ea;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.lang-link:hover { color: #fff; }
.lang-link.is-active {
  background: var(--orange);
  color: var(--orange-ink);
}
.lang-link.is-active:hover { color: var(--orange-ink); }

.hero {
  position: relative;
  padding: max(28px, env(safe-area-inset-top)) 0 2.25rem;
  text-align: center;
}

.profile {
  width: 148px;
  height: 148px;
  margin: 2.4rem auto 0;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.12), 0 18px 40px -18px rgba(0, 0, 0, 0.8);
  background: #fff;
}
.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.logo {
  display: block;
  width: min(240px, 72vw);
  margin: 1.15rem auto 0;
}
@media (min-width: 640px) {
  .logo { width: min(280px, 78vw); }
}

.motto {
  margin: 1.15rem 0 0;
  font-size: clamp(1.7rem, 6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}
.motto em {
  font-style: normal;
  color: var(--orange);
}

.follow {
  margin: .85rem auto 0;
  max-width: 28rem;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  color: #f3f4f6;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.35rem;
  min-height: 52px;
  padding: .95rem 1.25rem;
  border-radius: 14px;
  background: var(--orange);
  color: var(--orange-ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .12s ease, background-color .15s ease;
}
.cta:hover { background: var(--orange-2); }
.cta:active { transform: translateY(1px); }
.cta svg { width: 20px; height: 20px; }

.shop { padding: 0 0 1rem; }
.shop-head { text-align: center; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.35);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.shop-head h2 {
  margin: .7rem 0 0;
  font-size: clamp(1.55rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.shop-head p {
  margin: .5rem 0 0;
  color: var(--muted);
}

.grid {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .grid > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - .5rem);
    justify-self: center;
  }
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.65);
}
.card-media {
  aspect-ratio: 1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 106, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #161616, #0a0a0a);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14%;
  display: block;
}
.card-media img.is-photo {
  object-fit: cover;
  padding: 10%;
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
  padding: 1rem 1.1rem 1.1rem;
}
.card-body h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}
.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: auto;
  min-height: 50px;
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: var(--orange);
  color: var(--orange-ink);
  font-weight: 800;
  text-decoration: none;
  transition: background-color .15s ease, transform .12s ease;
}
.buy:hover { background: var(--orange-2); }
.buy:active { transform: translateY(1px); }
.buy svg { width: 18px; height: 18px; }

.footer {
  padding: 2.4rem 0 max(2rem, env(safe-area-inset-bottom));
  text-align: center;
}
.footer p {
  margin: 0;
  color: var(--soft);
  font-size: .78rem;
  line-height: 1.5;
}
.footer p + p { margin-top: .7rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
