@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --ink: #0b1220;
  --muted: #4b5563;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --sunrise: linear-gradient(135deg, #fff7ed 0%, #ffedd5 40%, #fed7aa 100%);
  --sky: linear-gradient(160deg, #f8fafc 0%, #eef2f7 60%, #fdf2f8 100%);
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

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

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--sky);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background: var(--sunrise);
  padding: 28px 6vw 72px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0) 72%);
  top: -220px;
  right: -160px;
  border-radius: 50%;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.2) 0%, rgba(14, 116, 144, 0) 70%);
  bottom: -240px;
  left: -160px;
  border-radius: 50%;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.hero-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta.ghost {
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #fff;
}

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

.hero-panel {
  display: grid;
  gap: 20px;
}

.panel-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.panel-card p {
  color: var(--muted);
  margin-top: 8px;
}

.panel-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.metric-label {
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 64px 6vw;
}

.section-title {
  max-width: 560px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.highlights {
  background: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.highlight-grid article {
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.highlight-grid p {
  color: var(--muted);
  margin-top: 10px;
}

.vision {
  background: #0f172a;
  color: #fff;
}

.vision-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.vision-text {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

.vision-accent {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: 1.05rem;
}

.products {
  background: #fff7ed;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.product-badge {
  align-self: start;
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.product-badge.alt {
  background: rgba(15, 118, 110, 0.15);
  color: #0f766e;
}

.product-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.values {
  background: #f1f5f9;
}

.pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pill {
  background: #fff;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.contact {
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 8px;
}

.footer {
  padding: 40px 6vw 56px;
  background: #0f172a;
  color: #fff;
  display: grid;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Policy Pages */
.policy-page {
  background: var(--sky);
  min-height: 100vh;
}

.policy-header {
  background: var(--sunrise);
  padding: 24px 6vw;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.policy-section {
  padding: 48px 6vw 80px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.policy-content .effective-date {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.policy-content h4 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.policy-content p {
  margin-bottom: 16px;
  color: #374151; /* Deeper gray for better readability */
}

.policy-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
  color: #374151;
}

@media (min-width: 720px) {
  .section {
    padding: 72px 7vw;
  }

  .hero {
    padding: 36px 7vw 90px;
  }

  .card-grid,
  .highlight-grid,
  .product-grid,
  .pill-grid,
  .contact-card,
  .vision-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-header {
    padding: 32px 7vw;
  }
  .policy-section {
    padding: 64px 7vw 100px;
  }
  .policy-card {
    padding: 56px;
  }
}

@media (min-width: 980px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-top: 80px;
  }

  .section {
    padding: 80px 8vw;
  }

  .card-grid,
  .highlight-grid,
  .product-grid,
  .pill-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .contact-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 32px;
  }

  .vision-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}
