/* Locker Link Landing – primary: #15BD4C (app primary) */
:root {
  --primary: #15BD4C;
  --primary-shade: #12a643;
  --primary-tint: #2cc45e;
  --dark: #1a1a1a;
  --dark-soft: #2f2f2f;
  --text: #2f2f2f;
  --text-muted: #5f5f5f;
  --bg: #f6f8fc;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-shade);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 189, 76, 0.06) 0%, rgba(21, 189, 76, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta .btn {
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
}

/* Features */
.features {
  background: var(--white);
  box-shadow: var(--shadow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* How it works */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 56px;
  counter-increment: step;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contacts */
.contacts {
  background: var(--white);
  box-shadow: var(--shadow);
}

.contacts-intro {
  text-align: center;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 40px;
  max-width: 100%;
}

.contacts-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  line-height: 1.5;
  padding: 16px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 480px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(21, 189, 76, 0.12);
  border-radius: 8px;
  color: var(--primary);
  /* Nudge icon down to align with text visually */
  transform: translateY(2px);
}

.contact-icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  vertical-align: middle;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  line-height: 1.5;
}

.contact-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}

.contact-value:hover {
  color: var(--primary-shade);
}

/* Download */
.download {
  background: linear-gradient(180deg, rgba(21, 189, 76, 0.08) 0%, transparent 100%);
}

.download-text {
  text-align: center;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.store-btn:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
}

.store-icon {
  font-size: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.store-icon-apple {
  align-self: center;
}

.store-icon-apple svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  /* Apple logo path sits slightly high in viewBox; nudge down to match text */
  position: relative;
  top: 1px;
}

.download-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 32px 0;
  text-align: center;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 56px 0;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-btn {
    justify-content: center;
  }
}
