:root {
  --bg: #fff9f2;
  --surface: #ffffff;
  --text: #221f2f;
  --muted: #5f5a6d;
  --primary: #ff5f7e;
  --primary-dark: #b13f63;
  --accent: #ffd166;
  --border: #f1d8ff;
  --secondary: #4ecdc4;
  --tertiary: #5b8cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #ffeef4 0%, #fff7e6 45%, #ebf6ff 100%);
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--tertiary) 50%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 12px 25px rgba(91, 140, 255, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
  color: var(--muted);
}

.hero-highlights li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 0.4rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(30, 26, 23, 0.08);
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.mock-shirt {
  margin-top: 1.25rem;
  min-height: 220px;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #ff8ea3, #ffd166, #7ed6d2, #5b8cff);
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: white;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  margin: 0;
}

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

.feature-card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.35rem;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.product-card span {
  font-weight: 800;
  color: var(--primary);
}

.testimonial-box {
  background: linear-gradient(135deg, #fff2f6, #f7f8ff);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 2rem;
  text-align: center;
}

blockquote {
  font-size: 1.25rem;
  margin: 0.8rem 0;
}

.author {
  color: var(--muted);
  font-weight: 600;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--tertiary) 50%, var(--secondary) 100%);
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.signup-form input {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 999px;
  min-width: min(280px, 100%);
}

.signup-form button {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.form-message {
  width: 100%;
  margin: 0.5rem 0 0;
  color: #ffe6b8;
}

.footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .hero-grid,
  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 480px;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero {
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    padding: 1.5rem 0 0;
  }

  .hero-actions,
  .signup-form {
    flex-direction: column;
  }

  .btn,
  .signup-form button,
  .signup-form input {
    width: 100%;
  }

  .cta-card,
  .testimonial-box {
    padding: 1.25rem;
  }

  .product-card img {
    height: 160px;
  }
}
