:root {
  --black: #000000;
  --lime: #D5EF34;
  --pink: #FF059C;
  --text: #f4f6f8;
  --muted: #b8c0cc;
  --card: #0e0e11;
  --card-2: #121217;
  --ring: rgba(213, 239, 52, .35);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);

  /* Standardized breakpoints */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #0a0a0d 0%, #0b0b10 40%, #0d0d12 100%);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  background: rgba(10, 10, 13, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--pink), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--lime), transparent 60%),
    #111;
  outline: 2px solid rgba(255, 255, 255, .08);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  font-weight: 600;
  opacity: .9;
  padding: 8px 0;
  /* Increase touch target */
}

.cta {
  padding: 12px 18px;
  /* Increased for better touch targets */
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta--primary {
  background: linear-gradient(135deg, var(--lime), #b7d80f);
  color: #111;
}

.cta--ghost {
  background: #15151b;
}

/* Mobile menu */
.hamburger {
  display: none;
  width: 48px;
  /* Increased for better touch target */
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #141419;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hamburger:hover {
  background-color: #1a1a21;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
  transition: background-color 0.3s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: #fff;
  transition: transform 0.3s ease;
}

.hamburger span::before {
  top: -6px
}

.hamburger span::after {
  top: 6px
}

/* Hamburger animation */
.hamburger.active span {
  background-color: transparent;
}

.hamburger.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-panel {
  position: fixed;
  inset: 64px 16px auto 16px;
  background: #0e0e12;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 14px;
  display: none;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-panel a {
  display: block;
  padding: 16px;
  /* Increased for better touch targets */
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mobile-panel a:hover {
  background: #14141b;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background: radial-gradient(60% 70% at 20% 20%, rgba(255, 5, 156, .22), transparent 60%),
    radial-gradient(60% 70% at 80% 20%, rgba(213, 239, 52, .16), transparent 60%);
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) 0;
}

.headline {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1.1;
  /* Improved from .95 for better readability */
  letter-spacing: -.5px;
  margin: 0 0 18px;
}

.sub {
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--muted);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  background: #14141b;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.badge svg {
  width: 18px;
  height: 18px;
}

.hero-card {
  background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1500&auto=format&fit=crop') center/cover no-repeat;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "Inclusive community. Exclusive perks.";
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, .4);
  padding: 14px 16px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 800;
}

/* Sections */
section {
  padding: clamp(56px, 9vw, 100px) 0;
  position: relative;
}

.section-title {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 56px);
  margin: 0 0 18px;
  line-height: 1.2;
}

.section-lead {
  color: var(--muted);
  max-width: 70ch;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.step {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), #c30379);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h4 {
  margin: 12px 0 8px;
}

/* Perks grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 22px;
  height: 100%;
  /* Ensure equal height cards */
}

.card h4 {
  margin: 10px 0 8px;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.plan {
  background: linear-gradient(180deg, #121217, #0f0f14);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* Ensure equal height plans */
}

.plan--highlight {
  border-color: var(--ring);
  box-shadow: 0 0 0 4px var(--ring);
  /* Reduced from 8px for mobile */
}

.price {
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 900;
  font-family: Archivo, Manrope, sans-serif;
}

.features {
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  font-weight: 700;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-text h3 {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.about-text p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Partners */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.logo-tile {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .06);
  height: 100px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: .85;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-tile:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.logo-tile img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

/* Testimonials */
.testis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.quote {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  height: 100%;
}

.quote::before {
  content: '\201C';
  position: absolute;
  top: -34px;
  left: 12px;
  font-size: 120px;
  color: rgba(255, 255, 255, .06);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  opacity: .9;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--pink));
}

/* Contact */
form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px var(--ring);
}

button[type=submit] {
  background: linear-gradient(135deg, var(--pink), #d40688);
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 32px 0 70px;
  color: #a5adbb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  opacity: .9;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all .6s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ------------------------- */
/* Responsive Adjustments     */
/* ------------------------- */

/* Large screens (<992px) */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    width: 95%;
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }
}

/* Medium screens (<768px) */
@media (max-width: 768px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    aspect-ratio: 16/9;
    max-height: 300px;
  }

  .section-title,
  .headline {
    text-align: center;
  }

  .section-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Small screens (<480px) */
@media (max-width: 480px) {
  .hero-wrap {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    aspect-ratio: auto;
    min-height: 200px;
  }

  .hero-card::after {
    font-size: 14px;
    padding: 10px 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .socials {
    justify-content: center;
  }

  .socials {
    display: flex;
    gap: 15px;
  }

  .socials a {
    color: var(--lime);
    /* or your preferred color */
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .socials a:hover {
    color: var(--pink);
    /* hover color */
  }

  .section-title {
    font-size: 28px;
  }

  .headline {
    font-size: 32px;
  }

  .sub {
    font-size: 16px;
  }

  section {
    padding: 40px 0;
  }
}