/* Sheek marketing — matches KennyKitchenWeb dashboard (Inter, #4CAF50, light gradient) */

:root {
  --bg-gradient-start: #f5f7fa;
  --bg-gradient-end: #c3cfe2;
  --text: #2d3748;
  --text-muted: #718096;
  --text-soft: #4a5568;
  --accent: #4caf50;
  --accent-hover: #43a047;
  --accent-soft: rgba(76, 175, 80, 0.1);
  --white: #ffffff;
  --white-glass: rgba(255, 255, 255, 0.95);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.1);
  --card-header-bg: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max: 1100px;
  --danger: #e53e3e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Header — matches .top-nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white-glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: var(--shadow-nav);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.logo-icon {
  color: var(--accent);
  font-size: 1.5rem;
}

.nav-desktop {
  display: none;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-desktop a {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-desktop a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--text-muted);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
}

.nav-mobile:not([hidden]) {
  display: flex;
}

.nav-mobile a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.nav-mobile a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-mobile-cta {
  text-align: center;
  margin-top: 8px;
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Buttons — match .nav-tab.active / primary actions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.btn-ghost {
  color: var(--text-muted);
  background: transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--accent);
  background: var(--accent-soft);
  transform: none;
}

.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-light {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  box-shadow: var(--shadow-hover);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* Mock card — dashboard-card style */
.glass-card {
  width: 100%;
  max-width: 380px;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mock-row {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.mock-row.muted {
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.green {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

.mock-bar {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), rgba(76, 175, 80, 0.35));
  margin-bottom: 10px;
}

.mock-bar.short {
  opacity: 0.55;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.02rem;
  max-width: 36rem;
  font-weight: 500;
}

.features {
  background: transparent;
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.feature-icon {
  font-size: 1.4rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--white);
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.price-tag {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  font-weight: 500;
}

.price-tag strong {
  color: var(--text);
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  min-height: 3.2em;
  line-height: 1.5;
}

.price-card .btn {
  width: 100%;
}

.pricing-footnote {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 40rem;
  font-weight: 500;
}

/* CTA band — solid accent like active nav */
.cta-band {
  padding: 3.5rem 0;
  background: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  max-width: 28rem;
}

.cta-band .btn-light {
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.35);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
