/* ── SOLT Theme: Tropical Premium ───────────────────────────── */

:root {
  --sand:     #F4EEE0;
  --sand-dark: #E5D9C4;
  --ink:      #1B1A1F;
  --muted:    #6B6459;
  --coral:    #E8623A;
  --coral-dark: #C94F28;
  --leaf:     #2C6B45;
  --leaf-light: #3A9D5F;
  --tropical: #E8A030;
  --surface:  #FDFAF5;
  --border:   #DDD5C4;
  --white:    #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── NAV ──────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 238, 224, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
  padding: 130px 32px 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--leaf);
  color: white;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.hero-headline {
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.headline-accent { color: var(--coral); }
.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--leaf);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-description {
  font-size: 18px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,98,58,0.3);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,98,58,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.proof-avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  background: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -6px;
}
.avatar:first-child { margin-left: 0; }
.avatar-a { background: var(--coral); }
.avatar-b { background: var(--leaf); }
.avatar-c { background: var(--tropical); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
}
.hero-img-wrap img { width: 100%; display: block; }
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.badge-icon {
  width: 36px;
  height: 36px;
  background: var(--leaf);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.badge-info { display: flex; flex-direction: column; gap: 2px; }
.badge-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; color: var(--ink); }
.badge-sub { font-size: 12px; color: var(--muted); }

.hero-float-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--coral);
  color: white;
  border-radius: 12px;
  padding: 8px 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(232,98,58,0.35);
}

/* ── SECTION SHARED ──────────────────────────────────────────── */

.section { padding: 96px 32px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── PRODUCT STRIP ───────────────────────────────────────────── */

.product-strip {
  background: var(--ink);
  padding: 72px 32px;
}
.product-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-strip-label { color: var(--coral); }
.product-strip-headline { font-size: clamp(28px, 4vw, 42px); color: white; margin-bottom: 16px; }
.product-strip-body { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.spec-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-icon { font-size: 20px; margin-bottom: 4px; }
.spec-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.spec-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.product-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-img-wrap img { width: 100%; display: block; }

/* ── USE CASES ───────────────────────────────────────────────── */

.usecases { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.uc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.uc-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(232,98,58,0.12);
  transform: translateY(-4px);
}
.uc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.uc-icon-padel { background: rgba(232,160,48,0.15); }
.uc-icon-surf { background: rgba(44,107,69,0.12); }
.uc-icon-yoga { background: rgba(232,98,58,0.12); }
.uc-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.uc-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.uc-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--leaf);
  font-weight: 600;
  margin-top: 4px;
}

/* ── WAITLIST / CTA ──────────────────────────────────────────── */

.waitlist { background: var(--coral); padding: 96px 32px; }
.waitlist-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.waitlist-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.waitlist-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.7; }

.waitlist-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 20px; }
.wf-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.wf-input::placeholder { color: rgba(255,255,255,0.65); }
.wf-input:focus { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.2); }
.wf-btn {
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.wf-btn:hover { background: #2a2940; transform: translateY(-1px); }
.wf-note { font-size: 13px; color: rgba(255,255,255,0.65); }

.wf-success {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 24px;
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.wf-success.show { display: block; }

/* ── FOOTER ───────────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  padding: 48px 32px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.footer-copy { font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-tagline { display: none; }
  .nav-inner { padding: 12px 20px; }
  .hero { padding: 110px 20px 64px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary { width: 100%; justify-content: center; }
  .product-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-img-wrap { order: -1; }
  .spec-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .wf-btn { width: 100%; }
  .section { padding: 72px 20px; }
  .product-strip { padding: 64px 20px; }
  .waitlist { padding: 72px 20px; }
  .footer { padding: 40px 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}