/* 2 Sips Matcha — brand palette */
:root {
  --bg-dusty: #e2ebe0;
  --bg-cream: #f4f1ea;
  --bg-card: rgba(255, 255, 255, 0.55);
  --green-deep: #2a3f32;
  --green-matcha: #4d6b52;
  --green-sage: #7a9478;
  --green-light: #a8bfa4;
  --accent-warm: #c4ad8a;
  --accent-gold: #b8956a;
  --text-primary: #1c2a22;
  --text-muted: #5a6b5e;
  --border-soft: rgba(42, 63, 50, 0.12);
  --shadow-soft: 0 8px 32px rgba(42, 63, 50, 0.08);
  --shadow-card: 0 4px 24px rgba(42, 63, 50, 0.06);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: linear-gradient(165deg, var(--bg-dusty) 0%, var(--bg-cream) 45%, #e8efe4 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Background shapes */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.shape-1 {
  width: 520px;
  height: 520px;
  background: var(--green-light);
  top: -120px;
  right: -80px;
  animation: float 18s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-warm);
  bottom: 10%;
  left: -100px;
  opacity: 0.25;
  animation: float 22s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--green-sage);
  top: 45%;
  right: 15%;
  opacity: 0.2;
  animation: float 16s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -30px) scale(1.05);
  }
}

/* Header */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--green-matcha);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.header-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-deep);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--green-deep);
  color: var(--bg-cream);
  border-color: var(--green-deep);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  min-height: calc(100vh - 80px);
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1.25rem;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--green-deep);
  color: var(--bg-cream);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-matcha);
}

.hero-lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Waitlist form */
.waitlist-form {
  max-width: 460px;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  min-width: 0;
}

.input-group input::placeholder {
  color: var(--green-sage);
  opacity: 0.7;
}

.input-group button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  background: var(--green-deep);
  color: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  min-width: 148px;
}

.input-group button:hover:not(:disabled) {
  background: var(--green-matcha);
  transform: translateY(-1px);
}

.input-group button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-message {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-message.success {
  color: var(--green-matcha);
}

.form-message.error {
  color: #a05252;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Hero visual — product image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 1rem;
}

.product-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(77, 107, 82, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.product-image {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(42, 63, 50, 0.2));
  animation: float-product 6s ease-in-out infinite;
}

@keyframes float-product {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Features */
.features {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.section-intro p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* CTA band */
.cta-band {
  position: relative;
  z-index: 1;
  margin: 0 2rem 4rem;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-matcha) 100%);
  border-radius: var(--radius-lg);
  color: var(--bg-cream);
  box-shadow: var(--shadow-soft);
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.cta-inner p {
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.cta-link {
  display: inline-block;
  color: var(--accent-warm);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.cta-link:hover {
  color: white;
  transform: translateX(4px);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  padding: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-deep);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1rem;
    min-height: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .waitlist-form {
    margin: 0 auto;
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }

  .product-image {
    max-width: 280px;
  }

  .eyebrow {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding: 1rem 1.25rem 4rem;
  }

  .input-group {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.5rem;
  }

  .input-group button {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .features,
  .cta-band {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cta-band {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

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