/* ================================================================
   Bloomora Marketing Website — Styles
   Primary: #66CED6 (cyan) · Headline: #1A2A2E · Body: #5D707F
   ================================================================ */

:root {
  --primary: #66CED6;
  --headline: #1A2A2E;
  --body-text: #5D707F;
  --muted: #8797B2;
  --surface: #FAFCFC;
  --surface-tint: #F0FAFB;
  --surface-warm: #F5F7F8;
  --divider: #DDE8EA;
  --card-bg: #FFFFFF;
  --footer-bg: #1A2A2E;
  --footer-text: #8797B2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--surface);
  color: var(--body-text);
  line-height: 1.65;
}

/* ---- Layout ---------------------------------------------------- */

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ---- Navigation ------------------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 252, 252, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--headline);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---- Buttons --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: var(--headline);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--headline);
  border: 1.5px solid var(--divider);
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.875rem;
}

.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* CTA section buttons (on cyan background) */
.btn-on-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-on-cyan:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-on-cyan.solid { background: var(--headline); color: #fff; }
.btn-on-cyan.outline { background: transparent; color: var(--headline); border: 2px solid var(--headline); }

/* ---- Typography ------------------------------------------------ */

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--headline);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--headline);
  line-height: 1.18;
  letter-spacing: -0.018em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--headline);
  line-height: 1.3;
}

.lead {
  font-size: 1.1rem;
  color: var(--body-text);
  line-height: 1.72;
}

.text-muted { color: var(--muted); font-size: 0.875rem; }

/* ---- Section base ---------------------------------------------- */

section { width: 100%; }

.bg-white { background: #ffffff; }
.bg-surface { background: var(--surface); }
.bg-warm { background: var(--surface-warm); }
.bg-tint { background: var(--surface-tint); }
.bg-primary { background: var(--primary); }

.section-inner { padding: 88px 0; }
.section-inner.compact { padding: 64px 0; }

.section-header { max-width: 72ch; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--body-text); }
.section-header.centered { text-align: center; margin: 0 auto 48px; }

/* ---- Cards ----------------------------------------------------- */

.card {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 26px;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--body-text); font-size: 0.95rem; line-height: 1.6; }

/* ---- Grids ----------------------------------------------------- */

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---- Hero ------------------------------------------------------ */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 88px;
}

.hero-content h1 { margin-bottom: 22px; }
.hero-content .lead { margin-bottom: 34px; max-width: 56ch; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }

.urgency { font-size: 0.825rem; color: var(--muted); }

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26, 42, 46, 0.1);
}

/* ---- Problem --------------------------------------------------- */

.problem-intro {
  color: var(--body-text);
  max-width: 68ch;
  margin-bottom: 36px;
  font-size: 1.02rem;
  line-height: 1.72;
}

.problem-close {
  margin-top: 36px;
  font-weight: 600;
  color: var(--headline);
  font-size: 1.05rem;
}

/* ---- Promise strip --------------------------------------------- */

.promise-strip {
  background: var(--surface-tint);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 20px 32px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-top: 36px;
}

.promise-strip .accent { color: var(--primary); }
.promise-strip .strong { color: var(--headline); font-weight: 800; }

/* ---- Steps (How It Works) -------------------------------------- */

.steps { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: start;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--headline);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 { margin-bottom: 4px; }
.step-body .step-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 8px; }

.step-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-body ul li {
  font-size: 0.9rem;
  color: var(--body-text);
  padding-left: 18px;
  position: relative;
}

.step-body ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-weight: 900;
}

.step-banner {
  margin-top: 52px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 42, 46, 0.08);
}

.step-banner img { width: 100%; height: auto; display: block; }

/* ---- Differentiation ------------------------------------------- */

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.diff-col {
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 28px 32px;
  background: var(--card-bg);
}

.diff-col.bloomora {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(102, 206, 214, 0.07), #ffffff);
}

.diff-col h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.diff-col.bloomora h3 { color: var(--primary); border-color: rgba(102, 206, 214, 0.3); }

.diff-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-col ul li {
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
  color: var(--body-text);
  line-height: 1.45;
}

.diff-col ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 0.75rem;
  top: 3px;
}

.diff-col.bloomora ul li::before {
  content: '✓';
  color: var(--primary);
  font-size: 0.85rem;
  top: 2px;
  font-weight: 700;
}

.diff-close {
  text-align: center;
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--headline);
  font-weight: 500;
  line-height: 1.6;
}

/* ---- Features -------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.feature-card img { width: 100%; height: auto; display: block; }

.feature-card-body { padding: 26px; }
.feature-card-body-spacious { padding: 36px 26px; }
.feature-card-body h3 { margin-bottom: 12px; }

.feature-card-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card-body ul li {
  font-size: 0.9rem;
  color: var(--body-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.feature-card-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.85rem;
}

/* ---- Privacy points -------------------------------------------- */

.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.trust-center {
  display: flex;
  justify-content: center;
}

.trust-message {
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.privacy-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.975rem;
  color: var(--body-text);
}

.privacy-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-tint);
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.privacy-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.privacy-link:hover { text-decoration: underline; }

/* ---- Audience -------------------------------------------------- */

.audience-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 56ch;
}

.audience-list li {
  font-size: 1rem;
  color: var(--body-text);
  padding-left: 30px;
  position: relative;
  line-height: 1.55;
}

.audience-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* ---- Final CTA ------------------------------------------------- */

.cta-section { padding: 96px 0; text-align: center; }
.cta-section h2 { color: var(--headline); margin-bottom: 18px; }
.cta-section .lead {
  max-width: 52ch;
  margin: 0 auto 40px;
  color: var(--headline);
  opacity: 0.75;
}

.cta-row-centered {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cta-urgency {
  font-size: 0.825rem;
  color: var(--headline);
  opacity: 0.6;
}

/* ---- Footer ---------------------------------------------------- */

.footer {
  background: var(--footer-bg);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p { color: var(--footer-text); font-size: 0.875rem; }

.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--primary); }

/* ---- Privacy page specific ------------------------------------- */

.policy-hero { padding: 72px 0 40px; border-bottom: 1px solid var(--divider); }
.policy-hero .eyebrow { margin-bottom: 10px; }
.policy-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.policy-hero .effective { color: var(--muted); font-size: 0.9rem; }

.policy-body { padding: 56px 0 80px; max-width: 72ch; }
.policy-body h2 { font-size: 1.15rem; margin-top: 2.2em; margin-bottom: 0.4em; color: var(--primary); }
.policy-body h3 { font-size: 1rem; font-weight: 600; margin-top: 1.6em; margin-bottom: 0.3em; }
.policy-body p { color: var(--muted); margin: 0.6em 0 1em; }
.policy-body ul { color: var(--muted); padding-left: 1.4em; margin: 0.4em 0 1em; line-height: 1.8; }
.policy-body a { color: var(--primary); text-decoration: underline; word-break: break-all; }

.policy-body .highlight-box {
  background: rgba(102, 206, 214, 0.06);
  border: 1px solid rgba(102, 206, 214, 0.22);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 1.2em 0;
}
.policy-body .highlight-box p { margin: 0; font-size: 0.95rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--primary); }

/* ---- Responsive ------------------------------------------------ */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .hero-image { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card:last-child:nth-child(odd) { grid-template-columns: 1fr; }
  .section-inner { padding: 64px 0; }
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; text-align: center; }
  .cta-row-centered { flex-direction: column; align-items: center; }
  .cta-row-centered .btn-on-cyan { width: 100%; max-width: 320px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .promise-strip { padding: 16px 20px; font-size: 0.9rem; }
}

/* ---- Accessibility / Screen readers ---------------------------- */

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