:root {
  --bg: #12060c;
  --bg-soft: #211018;
  --card: #2b1620;
  --card-soft: rgba(255, 255, 255, 0.06);
  --text: #fff7ef;
  --muted: #dac5b7;
  --muted-2: #ad9284;
  --accent: #b65a6a;
  --accent-strong: #f0a6b0;
  --cream: #fff1df;
  --border: rgba(255, 247, 239, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(240, 166, 176, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(182, 90, 106, 0.2), transparent 30rem),
    linear-gradient(135deg, #12060c 0%, #211018 48%, #321823 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 74px 0 62px;
}

.hero-content {
  min-width: 0;
}

.badge {
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: clamp(64px, 12vw, 146px);
  line-height: 0.86;
  margin: 0 0 24px;
  letter-spacing: -0.085em;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.subtitle {
  max-width: 780px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.38;
  color: var(--cream);
}

.micro {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted-2);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--cream);
  color: #240f17;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.play-badge {
  display: inline-flex;
  align-items: center;
  height: 54px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.play-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.play-badge img {
  display: block;
  height: 54px;
  width: auto;
}

.shared-box {
  max-width: 760px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(232, 160, 170, 0.35);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.shared-box h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.shared-eyebrow,
.eyebrow {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.shared-actions {
  margin-top: 22px;
}

.hidden {
  display: none;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-mock {
  width: min(360px, 100%);
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03)),
    #170a10;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-top {
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  margin: 8px auto 14px;
}

.app-preview {
  min-height: 620px;
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(240, 166, 176, 0.22), transparent 18rem),
    linear-gradient(180deg, #24111a 0%, #14080e 100%);
  overflow: hidden;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.app-header strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--cream);
  color: #241018;
  font-size: 17px;
}

.wine-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.wine-label {
  font-size: 13px;
  color: var(--accent-strong);
  font-weight: 800;
  margin-bottom: 8px;
}

.radar {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 28px auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 247, 239, 0.2);
  background:
    radial-gradient(circle, rgba(240, 166, 176, 0.18), transparent 58%),
    conic-gradient(from 90deg, rgba(240, 166, 176, 0.28), rgba(255, 241, 223, 0.2), rgba(182, 90, 106, 0.34), rgba(240, 166, 176, 0.28));
}

.radar::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 247, 239, 0.2);
  border-radius: 50%;
}

.radar::after {
  content: "";
  position: absolute;
  inset: 58px 42px 44px 56px;
  background: rgba(240, 166, 176, 0.56);
  clip-path: polygon(50% 0%, 92% 30%, 80% 86%, 35% 100%, 0% 48%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.radar span {
  position: absolute;
  inset: 50%;
  width: 1px;
  height: 92px;
  background: rgba(255, 247, 239, 0.18);
  transform-origin: 0 0;
}

.radar span:nth-child(1) {
  transform: rotate(0deg);
}

.radar span:nth-child(2) {
  transform: rotate(60deg);
}

.radar span:nth-child(3) {
  transform: rotate(120deg);
}

.metrics {
  display: grid;
  gap: 12px;
}

.metrics div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.metrics span {
  color: var(--muted);
}

.metrics strong {
  color: var(--cream);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-list div {
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}

.section {
  padding: 76px 0;
  border-top: 1px solid var(--border);
}

.intro-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.section > p,
.visual-copy p {
  max-width: 820px;
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 0 76px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card-soft);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.card-number {
  display: inline-flex;
  color: var(--accent-strong);
  font-weight: 900;
  margin-bottom: 42px;
}

.card p {
  font-size: 16px;
}

.visual-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.glass-panel {
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(240, 166, 176, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--muted);
}

.panel-row strong {
  color: var(--cream);
  text-align: right;
}

.compact {
  padding-bottom: 58px;
}

.bottom-actions {
  margin-top: 28px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--border);
}

.footer p,
.footer a {
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .phone-mock {
    transform: none;
    width: min(390px, 100%);
  }

  .intro-section,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .cards-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 1160px);
  }

  .actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .play-badge {
    width: 100%;
    justify-content: center;
  }

  .play-badge img {
    height: 50px;
  }

  .app-preview {
    min-height: 560px;
  }

  .footer {
    flex-direction: column;
  }
}

/* LOGO */
.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 16px;
}

/* SCREENSHOTS */
.screenshots {
  text-align: center;
}

.screenshots-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.screenshots-grid img {
  width: 260px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}

.screenshots-grid img:hover {
  transform: translateY(-6px) scale(1.02);
}