:root {
  --orange: #f26a21;
  --orange-deep: #b74814;
  --orange-soft: #ffe7d5;
  --cream: #f8f1ea;
  --paper: #fffaf5;
  --sand: #f3e7da;
  --ink: #171311;
  --graphite: #2a211d;
  --smoke: #695c53;
  --line: rgba(92, 68, 52, 0.16);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(26, 19, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.has-web-modal-open {
  overflow: hidden;
}

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

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

section[id] {
  scroll-margin-top: 92px;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 17, 15, 0.78);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.brand img {
  width: 162px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.main-nav .nav-login {
  margin-left: 10px;
  color: var(--ink);
  background: var(--white);
}

.main-nav .nav-login:hover,
.main-nav .nav-login:focus-visible {
  background: #ffd3b4;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(92deg, rgba(15, 11, 10, 0.92) 0%, rgba(15, 11, 10, 0.74) 38%, rgba(15, 11, 10, 0.28) 72%, rgba(15, 11, 10, 0.46) 100%),
    linear-gradient(180deg, rgba(15, 11, 10, 0.18), rgba(15, 11, 10, 0.42)),
    url("../images/hero-market.png") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(15, 11, 10, 0), rgba(15, 11, 10, 0.58));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(84vh - 76px);
  max-height: 860px;
  padding: clamp(42px, 7vw, 84px) 0 30px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffb07f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 10vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.drop-panel p,
.feature-story p,
.culture-grid p,
.app-copy p,
.final-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 28px rgba(242, 106, 33, 0.28);
}

.button.primary:hover {
  background: var(--orange-deep);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-rotator {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-rotator span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-rotator strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-glance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.hero-glance article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-glance span {
  display: block;
  margin-bottom: 8px;
  color: #ffbf95;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-glance strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 14px 0;
  color: #ffd5bc;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: ticker-move 28s linear infinite;
}

.ticker-track span::after {
  content: " /";
  margin-left: 20px;
  color: rgba(255, 197, 159, 0.5);
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.market-section {
  background:
    linear-gradient(180deg, #fffaf5, #fff5ed),
    var(--paper);
}

.shop-section {
  background: var(--paper);
}

.radar-section {
  background:
    linear-gradient(180deg, rgba(20, 15, 13, 0.94), rgba(29, 21, 18, 0.96)),
    var(--ink);
  color: var(--white);
}

.culture-section {
  background:
    linear-gradient(180deg, #fff7f1, #f7ede4);
}

.app-section {
  background:
    linear-gradient(135deg, #1f1714 0%, #31221c 54%, #f26a21 54%, #f4b077 100%);
  color: var(--white);
}

.final-cta {
  padding-top: 36px;
  background: var(--paper);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 24px;
  align-items: end;
}

.section-heading p,
.shop-feature p,
.insight-card p,
.product-card p,
.feature-story p,
.news-card p,
.culture-card p {
  color: var(--smoke);
}

.radar-section .section-heading p,
.drop-panel p,
.feature-story p,
.news-card p {
  color: rgba(255, 255, 255, 0.74);
}

.insight-grid,
.culture-grid,
.app-feature-grid {
  display: grid;
  gap: 16px;
}

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

.insight-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(35, 23, 17, 0.06);
}

.insight-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.shop-layout {
  display: grid;
  gap: 18px;
}

.shop-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fff7ef, #ffe5d2);
  box-shadow: var(--shadow);
}

.shop-feature-copy {
  max-width: 540px;
}

.shop-feature-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fffaf6 0%, #f4dfd1 100%);
}

.shop-feature-art::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 42px;
  border-radius: 50%;
  background: rgba(53, 35, 22, 0.12);
  filter: blur(10px);
}

.shop-feature-art img {
  position: relative;
  width: min(94%, 470px);
  filter: drop-shadow(0 24px 18px rgba(45, 29, 19, 0.16));
}

.price-callout {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--orange-deep);
  font-weight: 800;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 20px rgba(242, 106, 33, 0.18);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(26, 19, 14, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(26, 19, 14, 0.12);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1.2 / 1;
  padding: 16px;
  background: linear-gradient(145deg, var(--card-wash), #fff7f2);
}

.product-card-media::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 14%;
  left: 12%;
  height: 30px;
  border-radius: 50%;
  background: rgba(53, 35, 22, 0.1);
  filter: blur(8px);
}

.product-card-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 16px;
}

.product-topline,
.news-card span,
.drop-item span,
.culture-card span,
.app-feature-grid strong {
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.price {
  color: var(--orange-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

.product-tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.radar-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
}

.drop-panel,
.feature-story,
.news-card,
.culture-card,
.app-feature-grid article,
.final-cta-inner {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.drop-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.drop-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.drop-item {
  padding: 14px;
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.04);
}

.drop-item strong,
.culture-card strong,
.app-feature-grid article strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 1rem;
}

.drop-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.news-panel {
  display: grid;
  gap: 16px;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-story span {
  color: #ffb07f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

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

.culture-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(31, 21, 16, 0.06);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.app-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.app-feature-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.app-feature-grid article span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(100%, 330px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.92);
  box-shadow: 0 28px 46px rgba(16, 11, 9, 0.32);
}

.phone-top {
  width: 92px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 4px;
  background: #353535;
}

.phone-shell img {
  width: 154px;
  margin: 6px auto 22px;
}

.phone-card {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-card.active {
  border-color: rgba(242, 106, 33, 0.56);
  background: rgba(242, 106, 33, 0.12);
}

.phone-card strong,
.phone-card span {
  display: block;
}

.phone-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  background:
    linear-gradient(135deg, #fff7ef, #ffe1ca);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 640px;
  color: var(--smoke);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer img {
  width: 148px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffb07f;
  font-weight: 800;
}

.web-modal[hidden] {
  display: none;
}

.web-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.web-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 8, 7, 0.8);
  backdrop-filter: blur(10px);
}

.web-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  height: min(88vh, 900px);
}

.web-modal__frame-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #f5ede2;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.web-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #181210 0%, #2b1f1a 100%);
  color: var(--white);
}

.web-modal__header img {
  width: 148px;
  height: auto;
}

.web-modal__header-copy {
  display: grid;
  gap: 2px;
}

.web-modal__header-copy span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.web-modal__header-copy strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 0.92;
}

.web-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f5ede2;
}

.web-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 14, 12, 0.78);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.web-modal__close:hover {
  background: rgba(33, 25, 22, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-glance,
  .insight-grid,
  .product-grid,
  .news-grid,
  .culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .radar-layout,
  .app-layout,
  .shop-feature,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(22, 17, 15, 0.92);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(22, 17, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .nav-login {
    margin-left: 0;
  }

  .hero-inner {
    min-height: calc(82vh - 68px);
    padding-top: 52px;
  }

  .hero-glance,
  .insight-grid,
  .product-grid,
  .news-grid,
  .culture-grid,
  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-story {
    grid-template-columns: 1fr;
  }

  .hero-rotator {
    border-radius: 8px;
  }

  .final-cta-inner {
    align-items: flex-start;
  }

  .web-modal {
    padding: 0;
  }

  .web-modal__dialog {
    width: 100%;
    height: 100dvh;
  }

  .web-modal__frame-shell {
    border-radius: 0;
  }

  .web-modal__header {
    min-height: 68px;
    padding: 0 18px;
  }

  .web-modal__header img {
    width: 128px;
  }

  .web-modal__header-copy strong {
    font-size: 1.6rem;
  }

  .web-modal__close {
    top: 12px;
    right: 12px;
  }
}
