:root {
  --accent: #ecad29;
  --accent-dark: #a46616;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #111111;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.indicator {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.indicator-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f7d487);
  transform: translateX(-100%);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 60px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.nav-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  pointer-events: none;
}

.nav-headline strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-headline strong::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-2px);
}

.nav-headline span {
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand,
.nav-links {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  color: var(--accent);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-slider,
.slides,
.card {
  position: relative;
  height: 100vh;
  min-height: 620px;
}

.hero-slider {
  isolation: isolate;
  overflow: hidden;
}

.slides,
.card,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.card {
  z-index: 1;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1100ms ease;
}

.card.active {
  opacity: 1;
  transform: scale(1);
}

.card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 44%, rgba(0, 0, 0, 0.18));
  content: "";
}

.hero-overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 26%, rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 84% 76%, rgba(236, 173, 41, 0.2), transparent 24%);
}

.details {
  position: absolute;
  top: clamp(120px, 22vh, 220px);
  left: clamp(20px, 7vw, 92px);
  z-index: 5;
  width: min(620px, calc(100vw - 40px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}

.details.active {
  pointer-events: auto;
}

.details[aria-hidden="true"] {
  visibility: hidden;
}

.details[aria-hidden="false"] {
  visibility: visible;
}

.place-box {
  position: relative;
  padding-top: 18px;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.5vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
}

.place-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.details h1,
.details h2 {
  display: grid;
  gap: 2px;
  margin: 14px 0 18px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3rem, 10vw, 7.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.desc {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
  line-height: 1.72;
}

.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.discover,
.bookmark,
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.discover {
  padding: 0 24px;
  background: var(--accent);
  border-color: transparent;
  color: #17130a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bookmark,
.arrow {
  width: 44px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
}

.discover:hover,
.bookmark:hover,
.arrow:hover {
  transform: translateY(-2px);
}

.bookmark:hover,
.arrow:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.bookmark svg,
.arrow svg {
  width: 20px;
  height: 20px;
}

.hero-meta {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(118px, 17vh, 172px);
  z-index: 6;
  display: grid;
  gap: 10px;
  width: min(280px, calc(100vw - 40px));
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.pagination {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(24px, 5vh, 54px);
  left: clamp(20px, 7vw, 92px);
  z-index: 8;
  display: grid;
  grid-template-columns: 44px 44px minmax(120px, 420px) 54px;
  align-items: center;
  gap: 14px;
}

.progress-sub-container {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 44px;
}

.progress-sub-background {
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.progress-sub-foreground {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.slide-numbers {
  position: relative;
  width: 54px;
  height: 44px;
  overflow: hidden;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.slide-numbers .item {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(100%);
}

.slide-numbers .item.active {
  opacity: 1;
  transform: translateY(0);
}

.thumbs {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(300px, 37vh, 380px);
  z-index: 7;
  display: flex;
  gap: 14px;
  max-width: min(610px, 46vw);
}

.thumb {
  width: 118px;
  height: 164px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #222222;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0.72;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.thumb:hover,
.thumb.active {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-5px);
}

.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand-accent {
  color: var(--accent);
}

.brand-mark {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  padding-bottom: 6px;
}

.features {
  display: grid;
  gap: 8px;
  max-width: 48ch;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.86rem, 1.4vw, 0.96rem);
  font-weight: 600;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.ghost {
  padding: 0 22px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.thumb {
  position: relative;
}

.thumb-label {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.15;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 12px);
}

@media (max-width: 900px) {
  body {
    overflow: auto;
  }

  .site-nav {
    padding-top: 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-headline {
    display: none;
  }

  .details {
    top: 118px;
  }

  .details h1,
  .details h2 {
    font-size: clamp(3rem, 16vw, 5.6rem);
  }

  .desc {
    max-width: 42ch;
  }

  .hero-meta {
    display: none;
  }

  .thumbs {
    right: auto;
    bottom: 104px;
    left: 20px;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .thumb {
    flex: 0 0 88px;
    height: 116px;
  }

  .pagination {
    grid-template-columns: 44px 44px 1fr 48px;
    bottom: 24px;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .details {
    width: min(560px, calc(100vw - 40px));
  }

  .details h1,
  .details h2 {
    font-size: clamp(3.7rem, 8.2vw, 6.7rem);
  }

  .desc {
    max-width: 43ch;
  }

  .thumbs {
    gap: 10px;
    max-width: 48vw;
  }

  .thumb {
    width: 92px;
    height: 130px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .details {
    top: 102px;
    left: 16px;
    width: calc(100vw - 32px);
  }

  .details h1,
  .details h2 {
    margin-bottom: 14px;
  }

  .desc {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .cta {
    margin-top: 20px;
  }

  .discover {
    padding-inline: 18px;
  }

  .thumbs {
    left: 16px;
    max-width: calc(100vw - 32px);
  }

  .pagination {
    right: 16px;
    left: 16px;
    gap: 10px;
    grid-template-columns: 42px 42px 1fr 42px;
  }

  .arrow,
  .bookmark {
    width: 42px;
    min-height: 42px;
  }

  .slide-numbers {
    width: 42px;
    font-size: 1.65rem;
  }
}

/* ============ Sections (about / how / plans / contact) ============ */
.section {
  position: relative;
  padding: clamp(72px, 12vh, 140px) clamp(20px, 7vw, 92px);
  background: #0d0d0d;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-how {
  background: #111;
}

.section-plans {
  background: radial-gradient(circle at 80% 0%, rgba(236, 173, 41, 0.12), transparent 60%), #0d0d0d;
}

.section-contact {
  background: #101010;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 18px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--accent);
}

.section-lead {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.stats > div {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.stats strong {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--accent);
}

.stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.steps h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* plan card */
.plan-card {
  position: relative;
  max-width: 460px;
  margin: 40px auto 0;
  padding: 36px 32px;
  border: 1px solid rgba(236, 173, 41, 0.4);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(236, 173, 41, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  text-align: center;
}

.plan-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #17130a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
}

.plan-currency {
  font-size: 1.1rem;
  color: var(--muted);
}

.plan-amount {
  font-size: clamp(3.4rem, 9vw, 5rem);
  line-height: 1;
  color: var(--text);
}

.plan-period {
  font-size: 1rem;
  color: var(--muted);
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.plan-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.plan-cta {
  width: 100%;
}

.plan-headline {
  margin: 0 0 14px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
}

.plan-desc {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.plan-card .soon-badge {
  display: inline-block;
  margin-bottom: 22px;
}

/* contact */
.contact-card {
  max-width: 620px;
  margin: 32px 0 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.soon-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(236, 173, 41, 0.16);
  border: 1px solid rgba(236, 173, 41, 0.5);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer {
  padding: 26px clamp(20px, 7vw, 92px);
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

/* ============ Mobile responsive for sections ============ */
@media (max-width: 900px) {
  .stats,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 20px;
  }

  .plan-card {
    padding: 28px 22px;
  }

  .contact-card {
    padding: 24px 20px;
  }
}

/* ============ Phone-first hero adjustments ============ */
@media (max-width: 640px) {
  .hero-slider,
  .slides,
  .card {
    height: auto;
    min-height: 100svh;
  }

  .site-nav {
    padding: 14px 16px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .brand-logo {
    height: 26px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }

  .details {
    top: 92px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .details h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
    margin: 10px 0 14px;
  }

  .features {
    margin-top: 14px;
    font-size: 0.86rem;
  }

  .cta {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }

  .discover,
  .ghost {
    padding: 0 18px;
    font-size: 0.78rem;
  }

  .hero-meta {
    display: none;
  }

  .thumbs {
    right: auto;
    left: 16px;
    bottom: 96px;
    max-width: calc(100vw - 32px);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .thumb {
    flex: 0 0 84px;
    width: 84px;
    height: 112px;
  }

  .thumb-label {
    font-size: 0.56rem;
    padding: 2px 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
  }

  .pagination {
    right: 16px;
    left: 16px;
    bottom: 20px;
    gap: 8px;
    grid-template-columns: 40px 40px 1fr 40px;
  }

  .arrow,
  .bookmark {
    width: 40px;
    min-height: 40px;
  }

  .slide-numbers {
    width: 40px;
    font-size: 1.5rem;
  }
}
