:root {
  /* Core colors */
  --color-primary: #010101;
  --color-dark-scarlet: #5B1023;

  /* Status badges */
  --color-status-tried: #D4A574;
  --color-status-want: #4A90E2;
  --color-status-bought: #6B9E7F;
  --color-status-cellared: #8B7BA8;

  /* Actions */
  --color-tag-to-person: #C17A6B;
  --color-tagged: #E8B4A8;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-primary);
  line-height: 1.6;
  background: #ffffff;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.wine-drop {
  color: #5B1023;
  margin-left: 2px;
}

.logo-img {
  height: auto;
  width: 33%;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.sip-word {
  height: 1em;
  vertical-align: baseline;
  display: inline;
}

.tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--color-dark-scarlet);
}

/* Founder Story */
.story {
  background: #E8B4A8;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 1.7;
}

.story p {
  margin-bottom: 12px;
}

.story p:last-child {
  margin-bottom: 0;
}

/* Features */
.features {
  margin-bottom: 60px;
}

.features h2 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.feature {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 16px;
  color: #666;
}

/* Form */
.signup-section {
  background: #f9f7f5;
  padding: 60px 40px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.signup-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.signup-section p {
  color: #666;
  margin-bottom: 24px;
  font-size: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input[type="email"] {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--color-dark-scarlet);
  box-shadow: 0 0 0 3px rgba(91, 16, 35, 0.1);
}

button {
  padding: 12px 24px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: var(--color-dark-scarlet);
}

.form-note {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 8px;
}

/* Footer */
footer {
  border-top: 1px solid #f0f0f0;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: #999;
}

footer a {
  color: #010101;
  text-decoration: underline;
}

/* Screenshots */
.screenshots {
  margin-bottom: 60px;
}

.screenshots h2 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 20px 0;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.screenshot {
  flex-shrink: 0;
  height: 500px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.usecase {
  text-align: center;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.usecase-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
}

.usecase-cta {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-scarlet);
}

/* ── Beta invite page specific ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9f7f5;
  border: 1px solid #f0f0f0;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark-scarlet);
  margin-bottom: 28px;
  text-decoration: none;
  cursor: pointer;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dark-scarlet);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-subhead {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark-scarlet);
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.4;
}

.hero-body-close {
  font-size: 15px;
  color: #666;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.65;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}

.how-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.how-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-marker {
  font-size: 15px;
  color: var(--color-dark-scarlet);
  margin-top: 2px;
  flex-shrink: 0;
  line-height: 1;
}

.how-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 3px;
}

.how-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.beta-card {
  background: #f9f7f5;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 28px 28px 24px;
  margin-bottom: 32px;
}

.beta-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.beta-card p:last-child {
  margin-bottom: 0;
}

.screens-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 20px 0;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.screens-scroll img {
  flex-shrink: 0;
  height: 500px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 600px) {
  .tagline { font-size: 16px; }
  .hero { padding: 60px 0 40px; }
  .signup-section { padding: 40px 24px; }
  .screenshot { height: 400px; }
  .screens-scroll img { height: 400px; }
  .beta-card { padding: 22px 18px; }
}
