@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap");

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

:root {
  --teal: #0d7377;
  --teal-lt: #14a3a8;
  --warm: #f4efe7;
  --warm-dk: #e8e0d2;
  --accent: #d97706;
  --bg: #faf8f4;
  --white: #ffffff;
  --text: #1c1917;
  --muted: #78716c;
  --border: rgba(13, 115, 119, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.urgency-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urgency-bar .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #5eead4;
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
  animation: blink 1.2s ease infinite;
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal-lt);
  border-radius: 50%;
  animation: blink 1.8s ease infinite;
}

.main {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.label-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13, 115, 119, 0.08);
  border-radius: 4px;
  padding: 5px 12px;
  margin-bottom: 26px;
  animation: fadeUp 0.5s ease both;
}

.headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.08s ease both;
}

.headline em {
  font-style: italic;
  color: var(--teal);
}

.subheadline {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.14s ease both;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s 0.2s ease both;
}

.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.proof-text {
  font-size: 13px;
  color: var(--muted);
}

.proof-text strong {
  color: var(--text);
  font-weight: 600;
}

.viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.viewers::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal-lt);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal-lt);
  animation: blink 1.8s ease infinite;
}

.video-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.26s ease both;
}

.video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

.video-caption {
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.3s ease both;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 115, 119, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.benefit-title {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.34s ease both;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
}

.stat-box .num {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-box .label {
  font-size: 13px;
  color: var(--muted);
}

.cta-section {
  text-align: center;
  animation: fadeUp 0.5s 0.38s ease both;
}

.btn-cta {
  display: inline-block;
  padding: 17px 56px;
  background: var(--teal);
  border-radius: 10px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(13, 115, 119, 0.25);
}

.btn-cta:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13, 115, 119, 0.35);
}

.btn-cta:active {
  transform: translateY(0);
}

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .main {
    padding: 40px 16px 60px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding: 16px 20px;
  }
  .header-meta {
    display: none;
  }
  .social-proof {
    flex-wrap: wrap;
    gap: 10px;
  }
}