/* === Reset & Base === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #111517;
  color: #DCE8F0;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
a { color: #ABE1FF; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === CTA Button (outline) === */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ABE1FF;
  color: #ABE1FF;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  letter-spacing: 0.01em;
}
.cta:hover {
  background: #ABE1FF;
  color: #111517;
  text-decoration: none;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  background: #111517;
  border-bottom: 1px solid #252D34;
  z-index: 100;
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { height: 32px; display: block; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #DCE8F0;
  font-size: 24px;
  cursor: pointer;
}

/* === Footer === */
.site-footer {
  color: #5C7180;
  border-top: 1px solid #252D34;
  padding: 28px 0;
  font-size: 14px;
  text-align: center;
}

/* === Hero === */
.hero {
  padding: 64px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  color: #ABE1FF;
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-text {
  color: #5C7180;
  margin-bottom: 24px;
  max-width: 480px;
}

/* === Features (numbered list) === */
.features {
  padding: 48px 0;
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 28px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #252D34;
}
.feature-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ABE1FF;
  opacity: 0.25;
  line-height: 1;
}
.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  color: #5C7180;
  font-size: 15px;
}

/* === Quick Actions === */
.quick-actions {
  padding: 48px 0;
  text-align: center;
}
.quick-actions h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.quick-actions > .container > p {
  color: #5C7180;
  max-width: 560px;
  margin: 0 auto 24px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.pill {
  background: #181D21;
  border: 1px solid #252D34;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  color: #DCE8F0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px;
}

/* === Gallery === */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 48px;
}
.gallery img {
  height: 380px;
  width: auto;
  border-radius: 14px;
  flex-shrink: 0;
}

/* === Page Content (support, privacy, terms) === */
.page-header {
  padding: 48px 0 24px;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.page-header .subtitle {
  color: #5C7180;
  font-size: 14px;
  margin-bottom: 8px;
}
.page-header p {
  color: #5C7180;
  max-width: 640px;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 48px;
}
.card {
  background: #181D21;
  border: 1px solid #252D34;
  border-radius: 10px;
  padding: 28px;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p {
  color: #5C7180;
  font-size: 15px;
}
.card a {
  font-size: 18px;
  font-weight: 600;
}
.small-note {
  color: #5C7180;
  font-size: 13px;
  padding-bottom: 48px;
}

/* === Responsive === */
@media (min-width: 600px) {
  .card-grid--two { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111517;
    border-bottom: 1px solid #252D34;
    padding: 16px 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .header-inner { position: relative; }
}
