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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #171a29 0, #05060b 55%, #020308 100%);
  color: #f5f5f7;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(15, 17, 30, 0.98), rgba(10, 12, 24, 0.98));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.nav__logo {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
}

.nav__links a {
  color: #e5e7eb;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  transition: width 0.2s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  margin-top: 72px;
  padding-bottom: 32px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f9fafb, #9ca3af);
  -webkit-background-clip: text;
  color: transparent;
}

.hero__title span {
  display: block;
}

.hero__bg-number {
  position: absolute;
  right: 0;
  top: -40px;
  font-size: clamp(7rem, 16vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.06);
  pointer-events: none;
}

.hero__subtitle {
  margin-top: 24px;
  max-width: 420px;
  font-size: 0.95rem;
  color: #9ca3af;
}

.gallery {
  margin-top: 40px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.thumb-card {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: 18px;
  padding: 4px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.thumb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.thumb-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.thumb-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.9);
  border-color: rgba(59, 130, 246, 0.85);
}

.thumb-card:hover::before {
  opacity: 1;
}

.pricing {
  margin-top: 64px;
}

.pricing__header h2 {
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing__header p {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 0.95rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.tier {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.7);
}

.tier--featured {
  border-color: rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at top left, #1d2437, #020617);
}

.tier__pill {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  color: #020617;
  font-weight: 700;
}

.tier__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.tier__price {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 800;
}

.tier__currency {
  font-size: 1rem;
  opacity: 0.7;
  margin-right: 2px;
}

.tier__features {
  list-style: none;
  margin-top: 14px;
  color: #9ca3af;
  font-size: 0.9rem;
}

.tier__features li + li {
  margin-top: 6px;
}

.pricing__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  color: #020617;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #38bdf8, #a855f7);
  box-shadow: 0 14px 40px rgba(56, 189, 248, 0.35);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(56, 189, 248, 0.55);
}

.pricing__note {
  font-size: 0.8rem;
  color: #6b7280;
}

.contact {
  margin-top: 60px;
}

.contact h2 {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact p {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 0.9rem;
}

.contact__tag {
  margin-top: 10px;
}

.contact__tag span {
  font-weight: 700;
  color: #e5e7eb;
}

.footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 0.8rem;
  color: #6b7280;
}

@media (max-width: 720px) {
  .nav {
    padding-inline: 16px;
  }

  .nav__links {
    gap: 14px;
    font-size: 0.75rem;
  }

  .hero {
    margin-top: 60px;
  }

  .hero__subtitle {
    max-width: none;
  }

  .page {
    padding-inline: 16px;
  }
}


