:root {
  --orange: #ff9900;
  --orange-deep: #e47911;
  --navy: #232f3e;
  --ink: #0f1111;
  --muted: #565959;
  --line: #d5d9d9;
  --bg: #f5f6f6;
  --panel: #eaeded;
  --white: #ffffff;
  --link: #007185;
  --font: Arial, Helvetica, sans-serif;
  --shadow: 0 4px 14px rgba(15, 17, 17, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 17, 17, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #d5d9d9;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  min-height: 100dvh;
  box-shadow: 0 0 0 1px rgba(15, 17, 17, 0.06);
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand__name {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.brand__smile {
  width: 118px;
  height: 28px;
  margin-top: -2px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand--light .brand__name {
  color: var(--white);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
  padding: 2.5rem 2rem 2rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 153, 0, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.auth {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.auth svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero h1 span {
  color: var(--orange);
}

.lead {
  max-width: 36ch;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.lead strong {
  color: var(--ink);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.35);
}

.btn--primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.meta svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.hero__art {
  display: grid;
  place-items: center;
}

.scene {
  width: min(100%, 480px);
  height: auto;
  display: block;
}

/* How it works */
.how {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.how__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.how__icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff4e0;
  border: 2px solid #ffe0a8;
  color: var(--orange-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.how__icon span {
  position: absolute;
  top: -6px;
  left: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.how__icon svg {
  width: 22px;
  height: 22px;
}

.how__item p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.how__arrow {
  color: #bbb;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Details */
.details {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--panel);
}

.details__left {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.tile {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e3e6e6;
  box-shadow: var(--shadow);
}

.tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f2f2;
  color: var(--muted);
  display: grid;
  place-items: center;
}

.tile__icon svg {
  width: 22px;
  height: 22px;
}

.tile h2,
.prize h2,
.closes h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.tile p,
.prize__text,
.closes p {
  color: var(--muted);
  font-size: 0.95rem;
}

.prize {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e3e6e6;
  box-shadow: var(--shadow-lg);
  padding: 1.35rem 1.4rem 1.25rem;
}

.prize__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.prize__badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff4e0;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.prize__text {
  margin-bottom: 1rem;
}

.prize__text strong {
  color: var(--ink);
}

.prize__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.prize__tags span {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #fff4e0;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.closes {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.closes strong {
  color: var(--orange-deep);
}

/* Consent */
.consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2rem 1.75rem;
  background: var(--white);
  border-top: 1px solid #eee;
}

.consent__check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  max-width: 46rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.consent__check input {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.consent a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent__link {
  color: var(--link) !important;
  font-weight: 700;
  white-space: nowrap;
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 2rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
  margin-top: auto;
  flex-shrink: 0;
}

.footer p {
  flex: 1;
  min-width: 220px;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 46rem;
}

.footer__auth {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__auth svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 920px) {
  .hero,
  .details {
    grid-template-columns: 1fr;
  }

  .how {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how__arrow {
    display: none;
  }

  .nav {
    display: none;
  }

  .consent {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .header,
  .hero,
  .how,
  .details,
  .consent,
  .footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero__art {
    order: -1;
  }
}
