:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --fg-dim: #5a5652;
  --accent: #ff4d00;
  --accent-soft: #ff4d0020;
  --accent-glow: #ff4d0040;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1100px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent-glow);
  background: var(--accent-soft);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: rgba(255, 77, 0, 0.15);
  border-color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.25);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: #e64400;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 77, 0, 0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: transparent;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid #2a2a2a;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: #444;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px; /* extra top padding for fixed nav */
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--accent-glow);
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #222;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-top: 4px;
  max-width: 160px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #282828;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

.problem-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem-text h2 em {
  font-style: normal;
  color: var(--accent);
}

.problem-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid #252525;
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.pain-card:hover {
  border-color: #333;
}

.pain-icon {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 10px 0 8px;
}

.pain-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e1e1e;
  -webkit-text-stroke: 1px #333;
  min-width: 80px;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

.step-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #333, transparent);
  margin-left: 40px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.pricing .section-tag {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.pricing-grid {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid #252525;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.price-card.featured {
  border-color: var(--accent);
  position: relative;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
  z-index: -1;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
}

.price-features li {
  padding: 8px 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid #1e1e1e;
  position: relative;
  padding-left: 20px;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.price-fit {
  font-size: 0.88rem;
  color: var(--fg-dim);
  font-style: italic;
}

.pricing-note {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===== SAMPLES ===== */
.samples {
  padding: 100px 40px;
  background: var(--bg);
}

.samples-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.samples h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.samples-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
  max-width: 520px;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid #252525;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.sample-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}

.sample-visual {
  background: var(--bg-elevated);
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sample-tag-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.7);
  border: 1px solid #333;
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--fg-muted);
  backdrop-filter: blur(4px);
}

/* Before/after transformation visual */
.sample-split {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.split-before, .split-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.split-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

.after-label { color: var(--accent); }

.split-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
}

.split-preview {
  width: 72px;
  height: 90px;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.before-preview {
  background: #111;
  border: 1px solid #2a2a2a;
}

.after-preview {
  background: #1a1008;
  border: 1px solid var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.preview-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #2a2a2a;
}

.after-preview .preview-bar {
  background: rgba(255,77,0,0.3);
}

.preview-bar.short { width: 60%; }
.preview-bar.medium { width: 80%; }

.preview-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a2a2a;
  margin-top: 2px;
}

.preview-circle.lit {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.preview-shine {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,77,0,0.15);
  filter: blur(8px);
}

/* Day-in-the-life timeline visual */
.sample-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #333;
  flex-shrink: 0;
}

.timeline-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-content {
  display: flex;
  gap: 12px;
  align-items: center;
}

.timeline-time {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-dim);
  min-width: 30px;
}

.timeline-text {
  font-size: 13px;
  color: var(--fg-muted);
}

.timeline-line {
  width: 1px;
  height: 20px;
  background: #2a2a2a;
  margin-left: 4px;
}

/* Food close-up visual */
.sample-food-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-plate {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.food-item {
  position: absolute;
  border-radius: 50%;
}

.item-1 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  top: 20px;
  left: 20px;
  border-radius: 40% 60% 50% 50%;
}

.item-2 {
  width: 28px;
  height: 14px;
  background: #22c55e;
  opacity: 0.8;
  top: 30px;
  right: 18px;
  border-radius: 4px;
  transform: rotate(-15deg);
}

.item-3 {
  width: 18px;
  height: 18px;
  background: #ff6b35;
  bottom: 20px;
  left: 35px;
  border-radius: 50%;
}

.food-steam {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 2px;
  height: 12px;
  background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
  border-radius: 1px;
  transform: translateX(-50%);
}

.focus-ring {
  position: absolute;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 1px dashed rgba(255,77,0,0.3);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.04); }
}

.sample-info {
  padding: 28px;
}

.sample-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.sample-info p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sample-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-chip {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-dim);
  background: #141414;
  border: 1px solid #242424;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.samples-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid #1a1a1a;
}

.samples-cta-text {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ===== PRICING CTA ===== */
.pricing-cta {
  max-width: var(--max-width);
  margin: 40px auto 0;
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 40px;
  background: var(--bg);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.proof-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid #252525;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid #252525;
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5652' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: var(--fg);
}

.form-group select option {
  background: var(--bg-elevated);
  color: var(--fg);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 4px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav-links .nav-link { display: none; }

  .hero {
    padding: 100px 24px 40px;
    min-height: 80vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .problem {
    padding: 60px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how {
    padding: 60px 24px;
  }

  .step {
    gap: 20px;
  }

  .step-number {
    font-size: 2.5rem;
    min-width: 50px;
  }

  .pricing {
    padding: 60px 24px;
  }

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

  .closing {
    padding: 80px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .samples {
    padding: 60px 24px;
  }

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

  .contact {
    padding: 60px 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }
}