﻿:root {
  --fg-bg: #f4f7f3;
  --fg-surface: rgba(255, 255, 255, 0.92);
  --fg-surface-solid: #ffffff;
  --fg-surface-alt: #eef4ec;
  --fg-text: #182218;
  --fg-muted: #5d6a60;
  --fg-border: rgba(24, 34, 24, 0.10);
  --fg-border-strong: rgba(24, 34, 24, 0.16);
  --fg-primary: #2b5d2a;
  --fg-primary-dark: #17320b;
  --fg-accent: #7fa86f;
  --fg-glow: rgba(127, 168, 111, 0.22);
  --fg-shadow: 0 24px 60px rgba(23, 50, 11, 0.10);
  --fg-shadow-soft: 0 16px 34px rgba(23, 50, 11, 0.08);
  --fg-shadow-lift: 0 26px 54px rgba(23, 50, 11, 0.14);
  --fg-radius-xl: 28px;
  --fg-radius-lg: 22px;
  --fg-radius-md: 16px;
  --fg-radius-sm: 12px;
  --fg-max: 1200px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--fg-text);
  background:
    radial-gradient(circle at top left, rgba(127, 168, 111, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(43, 93, 42, 0.10), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, var(--fg-bg) 100%);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.fg-shell { min-height: 100vh; }
.fg-container { width: min(calc(100% - 2rem), var(--fg-max)); margin: 0 auto; }

.fg-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 252, 251, 0.76);
  border-bottom: 1px solid rgba(24, 34, 24, 0.06);
}

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

.fg-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  min-width: 0;
}

.fg-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--fg-surface-solid);
  border: 1px solid var(--fg-border);
  box-shadow: 0 12px 28px rgba(23, 50, 11, 0.08);
  padding: 0.4rem;
  object-fit: contain;
  flex-shrink: 0;
}

.fg-brand-copy { min-width: 0; }
.fg-brand-kicker {
  display: block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.fg-brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--fg-text);
}

.fg-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fg-nav-link,
.fg-nav-button,
.fg-button {
  text-decoration: none;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
}

.fg-nav-link,
.fg-nav-button {
  padding: 0.82rem 1.08rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

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

.fg-nav-link:hover,
.fg-nav-link:focus-visible {
  background: rgba(127, 168, 111, 0.12);
  color: var(--fg-text);
  transform: translateY(-1px);
}

.fg-nav-button,
.fg-button {
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--fg-primary) 0%, var(--fg-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(23, 50, 11, 0.18);
}

.fg-nav-button:hover,
.fg-nav-button:focus-visible,
.fg-button:hover,
.fg-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(23, 50, 11, 0.22);
}

.fg-main { padding: 2rem 0 4rem; }
.fg-hero {
  position: relative;
  padding: 2.4rem 0 3rem;
}

.fg-hero::before,
.fg-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(16px);
}

.fg-hero::before {
  width: 20rem;
  height: 20rem;
  left: -8rem;
  top: 2rem;
  background: radial-gradient(circle, var(--fg-glow) 0%, rgba(127, 168, 111, 0) 70%);
}

.fg-hero::after {
  width: 16rem;
  height: 16rem;
  right: -4rem;
  top: 0;
  background: radial-gradient(circle, rgba(43, 93, 42, 0.16) 0%, rgba(43, 93, 42, 0) 72%);
}

.fg-hero-card {
  position: relative;
  display: grid;
  gap: 2rem;
  overflow: hidden;
  background: var(--fg-surface);
  border: 1px solid rgba(24, 34, 24, 0.08);
  border-radius: var(--fg-radius-xl);
  box-shadow: var(--fg-shadow);
  padding: 1.6rem;
  isolation: isolate;
}

.fg-hero-surface {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fg-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(24, 34, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 34, 24, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
}

.fg-hero-word {
  position: absolute;
  right: 1.2rem;
  bottom: -0.2rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4.5rem, 17vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(23, 50, 11, 0.045);
  user-select: none;
}

.fg-hero-copy,
.fg-product-showcase {
  position: relative;
  z-index: 1;
}

.fg-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 35rem;
}

.fg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(127, 168, 111, 0.16);
  color: var(--fg-primary-dark);
  padding: 0.48rem 0.92rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.fg-title {
  margin: 1rem 0 0.8rem;
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.fg-subtitle {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--fg-muted);
  line-height: 1.75;
}

.fg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.fg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.fg-section { padding: 1rem 0 2rem; }

.fg-panel {
  background: var(--fg-surface-solid);
  border: 1px solid var(--fg-border);
  border-radius: var(--fg-radius-lg);
  box-shadow: var(--fg-shadow-soft);
  overflow: hidden;
}

.fg-product-showcase {
  min-width: 0;
}

.fg-slider-card {
  padding: 1rem 1rem 0.9rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.fg-slider-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fg-shadow-lift);
  border-color: rgba(43, 93, 42, 0.14);
}

.fg-slider-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 0;
  border-radius: calc(var(--fg-radius-lg) - 4px);
  background:
    radial-gradient(circle at 50% 18%, rgba(127, 168, 111, 0.10), transparent 36%),
    radial-gradient(circle at 50% 82%, rgba(24, 34, 24, 0.05), transparent 28%),
    #ffffff;
  border: 1px solid rgba(24, 34, 24, 0.07);
  overflow: hidden;
}

.fg-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.fg-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.fg-slide-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.55rem, 1.5vw, 0.95rem);
}

.fg-slide-frame img {
  max-width: 92%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fg-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.9rem;
}

.fg-slider-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: rgba(24, 34, 24, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.fg-slider-dot:hover,
.fg-slider-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(24, 34, 24, 0.32);
  outline: none;
}

.fg-slider-dot.is-active {
  background: var(--fg-primary);
}

.fg-preorder-wrap { display: grid; gap: 1.5rem; }

.fg-copy-card,
.fg-form-card {
  padding: 1.55rem;
}

.fg-eyebrow,
.fg-form-kicker {
  margin: 0 0 0.8rem;
  color: var(--fg-primary);
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.fg-heading {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.fg-text,
.fg-form-copy {
  margin: 0;
  color: var(--fg-muted);
  max-width: 44rem;
  line-height: 1.75;
}

.fg-info-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.fg-info-chip {
  border: 1px solid rgba(23, 50, 11, 0.08);
  background: var(--fg-surface-alt);
  color: var(--fg-primary-dark);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fg-feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.fg-feature-item {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(24, 34, 24, 0.08);
  border-radius: var(--fg-radius-md);
  background: linear-gradient(180deg, rgba(238, 244, 236, 0.62), rgba(255, 255, 255, 0.94));
}

.fg-feature-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.2;
}

.fg-feature-item p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.fg-form-card {
  display: grid;
  gap: 1rem;
}

.fg-form-intro {
  display: grid;
  gap: 0.35rem;
}

.fg-form { display: grid; gap: 1rem; }
.fg-form-grid { display: grid; gap: 1rem; }
.fg-field { display: grid; gap: 0.45rem; }
.fg-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fg-text);
}

.fg-input,
.fg-textarea {
  width: 100%;
  border: 1px solid rgba(24, 34, 24, 0.14);
  background: #fff;
  border-radius: 14px;
  padding: 0.98rem 1rem;
  color: var(--fg-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fg-input:hover,
.fg-textarea:hover {
  border-color: var(--fg-border-strong);
}

.fg-input:focus,
.fg-textarea:focus {
  outline: none;
  border-color: var(--fg-primary);
  box-shadow: 0 0 0 4px rgba(43, 93, 42, 0.12);
  transform: translateY(-1px);
}

.fg-checkbox-field {
  gap: 0.35rem;
}

.fg-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  color: var(--fg-text);
  font-size: 0.94rem;
  line-height: 1.55;
}

.fg-consent input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--fg-primary);
}

.fg-submit-button {
  width: 100%;
}

.fg-privacy-note {
  margin: -0.1rem 0 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.fg-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.fg-textarea { min-height: 140px; resize: vertical; }
.fg-error {
  min-height: 1.15rem;
  font-size: 0.84rem;
  color: #b42318;
}

.fg-status {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-size: 0.94rem;
  border: 1px solid transparent;
}

.fg-status.is-visible { display: block; }
.fg-status.is-success { background: #eaf7e8; color: #205122; border-color: rgba(32, 81, 34, 0.18); }
.fg-status.is-warning { background: #fff6e5; color: #8a5a00; border-color: rgba(138, 90, 0, 0.18); }
.fg-status.is-error { background: #fef0f0; color: #912018; border-color: rgba(145, 32, 24, 0.18); }

.fg-footer { padding: 2rem 0 3rem; }
.fg-footer-inner {
  border-top: 1px solid rgba(24, 34, 24, 0.08);
  padding-top: 1.25rem;
  display: grid;
  gap: 0.35rem;
  color: var(--fg-muted);
  font-size: 0.92rem;
}

.fg-animate-up {
  animation: fgFadeUp 0.68s ease both;
}

.fg-delay-1 { animation-delay: 0.08s; }
.fg-delay-2 { animation-delay: 0.16s; }

@keyframes fgFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 901px) {
  .fg-hero-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    align-items: stretch;
    padding: 2rem;
  }
}

@media (min-width: 701px) {
  .fg-preorder-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .fg-copy-card,
  .fg-form-card {
    padding: 2rem;
  }

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

@media (max-width: 900px) {
  .fg-main { padding-top: 1.5rem; }
  .fg-hero-card { padding: 1.35rem; }
  .fg-title { font-size: clamp(2.6rem, 10vw, 4.4rem); }
  .fg-hero-word { right: 0.8rem; font-size: clamp(4rem, 22vw, 8rem); }
}

@media (max-width: 700px) {
  .fg-container { width: min(calc(100% - 1.25rem), var(--fg-max)); }
  .fg-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.85rem 0;
  }

  .fg-nav {
    width: 100%;
    gap: 0.6rem;
  }

  .fg-nav-link,
  .fg-nav-button,
  .fg-button {
    width: 100%;
    justify-content: center;
  }

  .fg-hero {
    padding-top: 1.2rem;
  }

  .fg-hero-card,
  .fg-copy-card,
  .fg-form-card {
    padding: 1.1rem;
  }

  .fg-title { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .fg-subtitle { font-size: 1rem; }
  .fg-heading { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}

@media (max-width: 480px) {
  .fg-brand-mark {
    width: 50px;
    height: 50px;
  }

  .fg-brand-name {
    font-size: 1rem;
  }

  .fg-nav-link,
  .fg-nav-button,
  .fg-button {
    min-height: 48px;
    padding: 0.9rem 1rem;
    font-size: 0.84rem;
  }

  .fg-slider-viewport {
    aspect-ratio: 4 / 3;
  }

  .fg-hero-word {
    bottom: 0.2rem;
    right: 0.5rem;
  }

  .fg-info-stack {
    gap: 0.5rem;
  }
}
