:root {
  --bg: #060606;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #d9d9d9;
  --peach: #ffb482;
  --peach-dark: #ff8f57;
  --gold: #fcd87a;
  --accent: linear-gradient(120deg, #ffb482, #fcd87a);
  --font-heading: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(255, 180, 130, 0.16), transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
}

.hero {
  padding: 2rem clamp(1.5rem, 5vw, 6rem) 5rem;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1000;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-group img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.logo-group .brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0.5rem 0;
}

.hero-text h1 span {
  color: var(--peach);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--peach);
}

.lead {
  color: var(--muted);
  max-width: 520px;
}

.feedback-hero-content .lead {
  max-width: 100%;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background-image: var(--accent);
  color: #0e0e0e;
  box-shadow: 0 10px 40px rgba(255, 180, 130, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline {
  border: 1px solid var(--peach);
  color: var(--peach);
  padding: 0.5rem 1.4rem;
}

.metrics {
  display: flex;
  gap: 2rem;
}

.metrics span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--peach);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(14, 14, 14, 0.9);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-card img {
  width: 240px;
  margin: 0 auto;
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 180, 130, 0.35), transparent 60%);
  opacity: 0.6;
  filter: blur(30px);
  pointer-events: none;
}

.floating-stars::before,
.floating-stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 40px);
  animation: drift 18s linear infinite;
}

.floating-stars::after {
  animation-duration: 24s;
  opacity: 0.6;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-60%);
  }
}

.gradient-edge {
  position: absolute;
  inset: auto 0 -80px;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 180, 130, 0.18), transparent);
  filter: blur(32px);
  pointer-events: none;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

.about {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
}

.about-grid,
.product-grid,
.sustainability-grid,
.market-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-grid article {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(14px);
}

.founders-card .founder-list div {
  border-top: 1px solid var(--border);
  padding: 0.6rem 0;
}

.product {
  background: radial-gradient(circle at top, rgba(255, 143, 87, 0.18), transparent 60%);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
}

.product-card table {
  width: 100%;
  border-collapse: collapse;
}

.product-card th {
  text-align: left;
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 0;
}

.product-card td {
  text-align: right;
  color: var(--text);
}

.pill-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list li {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.product-card.highlight {
  background: linear-gradient(135deg, rgba(255, 143, 87, 0.2), rgba(255, 255, 255, 0.02));
}

.badge-list {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.badge-list span {
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.sustainability-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sustainability article,
.market-grid article {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(7, 7, 7, 0.85);
}

.market-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.note {
  border-left: 3px solid var(--peach);
  padding-left: 0.8rem;
  color: var(--muted);
}

.contact {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  background: #040404;
}

.order-page .hero {
  padding-bottom: 3rem;
}

.order-hero-content {
  max-width: 680px;
  margin-top: 3rem;
}

.order-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.order-form,
.order-summary {
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(14px);
}

.order-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.order-form input,
.order-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 2px rgba(255, 180, 130, 0.2);
}

.order-form textarea {
  resize: vertical;
}

.hidden-field {
  display: none !important;
}

.product-chooser {
  margin-bottom: 1.5rem;
}

.product-chooser h3 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.product-option {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-option:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--peach);
}

.product-option input[type="radio"] {
  accent-color: var(--peach);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.product-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.product-option span {
  font-weight: 600;
  font-size: 1.1rem;
}

.product-option p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-price {
  font-size: 0.95rem;
  color: var(--peach);
  font-weight: 600;
  white-space: nowrap;
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1rem 0 0.5rem;
}

.order-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.form-hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--peach);
  margin-top: 0.5rem;
}

.order-summary ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.order-summary li {
  margin-bottom: 0.5rem;
}

.order-meta {
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: clamp(1.5rem, 5vw, 6rem);
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: none;
    z-index: 1002;
    pointer-events: auto;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-content {
    margin-top: 3rem;
  }

  .metrics {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .order-form-actions {
    flex-direction: column;
  }

  .product-option {
    grid-template-columns: auto auto 1fr;
    gap: 0.8rem;
  }

  .product-price {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }
}

/* Feedback Page Styles */
.feedback-page {
  background: var(--bg);
  color: var(--text);
}

.feedback-page .hero {
  background: radial-gradient(circle at top, rgba(255, 180, 130, 0.16), transparent 45%),
    var(--bg);
  padding-bottom: 4rem;
}

.feedback-hero-content {
  max-width: 680px;
  margin: 4rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-hero-content .eyebrow {
  color: var(--peach);
  text-align: center;
  display: block;
  width: 100%;
}

.feedback-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1rem auto;
  color: var(--text);
  text-align: center;
  width: 100%;
}

.feedback-hero-content .lead {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center !important;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.success-icon {
  margin: 0 auto 2rem;
  color: var(--peach);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.feedback-section {
  padding: 6rem clamp(1.5rem, 5vw, 6rem);
  background: rgba(255, 255, 255, 0.01);
}

.feedback-container {
  max-width: 720px;
  margin: 0 auto;
}

.feedback-form {
  background: rgba(7, 7, 7, 0.9);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.feedback-rating-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.feedback-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.star {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star:hover {
  color: var(--peach);
  transform: scale(1.1);
}

.star.active {
  color: var(--peach);
}

.star.active svg path {
  fill: var(--peach);
  stroke: var(--peach);
}

.rating-hint {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.5rem;
  min-height: 1.5rem;
}

.feedback-fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 4px rgba(255, 180, 130, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.feedback-form textarea {
  resize: vertical;
  min-height: 100px;
}

.feedback-actions {
  margin-top: 3rem;
  text-align: center;
}

.feedback-actions .btn {
  min-width: 200px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feedback-page .btn-primary {
  background-image: var(--accent);
  color: #0e0e0e;
}

.feedback-page .btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.feedback-page .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .feedback-form {
    padding: 2rem 1.5rem;
  }

  .star-rating {
    gap: 0.25rem;
  }

  .star svg {
    width: 40px;
    height: 40px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

