:root {
  --bg: #FBF7F0;
  --bg-alt: #F4EDE1;
  --text: #16233F;
  --text-muted: #6B7280;
  --accent: #E07124;
  --accent-soft: #FBE3CC;
  --accent-2: #5A2A5D;
  --border: #E7DFD1;
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

  --navy: #16233F;
  --on-navy: #F7F3EA;
  --on-navy-muted: rgba(247, 243, 234, 0.68);
  --navy-card: rgba(247, 243, 234, 0.07);
  --navy-border: rgba(247, 243, 234, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 760px;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.accent { color: var(--accent); }

/* Header */
.site-header {
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--bg-alt);
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 84px 0 48px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 72%);
  mask-image: radial-gradient(circle, black, transparent 72%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  left: -20px;
}

.hero::after {
  right: -20px;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 7px 18px;
  border-radius: 999px;
  max-width: 560px;
  margin: 0 auto 24px;
}

.hero-title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  max-width: 680px;
  margin: 0 auto 24px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-close {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ED8D4E 0%, var(--accent) 55%, #C4591A 100%);
  color: #FFF9F2;
  box-shadow: 0 10px 24px -10px rgba(224, 113, 36, 0.55);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px -8px rgba(224, 113, 36, 0.6);
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px -8px rgba(224, 113, 36, 0.5);
  filter: brightness(0.97);
}

.btn-glow {
  box-shadow: 0 14px 34px -8px rgba(224, 113, 36, 0.5);
}

.btn-glow:hover {
  box-shadow: 0 16px 38px -6px rgba(224, 113, 36, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  padding: 13px 8px;
}

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

/* Video */
.video-section {
  padding: 8px 0 72px;
  text-align: center;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow:
    0 30px 70px -20px rgba(224, 113, 36, 0.4),
    0 20px 50px -20px rgba(22, 35, 63, 0.35);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 50%;
  background: #FFFBF5;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(22, 35, 63,0.25);
  transition: transform 0.15s ease;
}

.video-frame:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-frame.is-playing .play-btn {
  display: none;
}

.video-caption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Offer */
.offer {
  background: #fff;
  padding: 88px 0;
}

.offer h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 52px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offer-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 36px;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(135deg, rgba(224, 113, 36, 0.4), rgba(90, 42, 93, 0.22));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 28px 60px -34px rgba(22, 35, 63, 0.28),
    0 10px 24px -16px rgba(22, 35, 63, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 70px -30px rgba(22, 35, 63, 0.32),
    0 14px 28px -14px rgba(22, 35, 63, 0.16);
}

.offer-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.offer-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon svg {
  width: 24px;
  height: 24px;
}

.offer-eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.offer-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
}

.offer-for {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.offer-for strong {
  color: var(--text);
}

.offer-outcome {
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.offer-included {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.offer-included li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.offer-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.offer-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 20px 24px;
}

.offer-meta-label {
  display: block;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.offer-meta-value {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
}

.offer-meta-item:last-child .offer-meta-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Testimonials */
.testimonials {
  background: var(--bg-alt);
  padding: 88px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 52px;
}

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

.testimonial-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 40px 28px 32px;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(135deg, rgba(224, 113, 36, 0.4), rgba(90, 42, 93, 0.22));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 28px 60px -34px rgba(22, 35, 63, 0.24),
    0 10px 24px -16px rgba(22, 35, 63, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 70px -30px rgba(22, 35, 63, 0.3),
    0 14px 28px -14px rgba(22, 35, 63, 0.14);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-soft);
  z-index: 0;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.testimonial-card cite::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
}

.testimonial-card cite {
  position: relative;
  z-index: 1;
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-2);
}

/* Why */
.why {
  background: var(--navy);
  color: var(--on-navy);
  padding: 96px 0;
}

.why h2 {
  color: var(--on-navy);
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.why-intro {
  text-align: center;
  color: var(--on-navy-muted);
  margin-bottom: 40px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.why-point {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 30px;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  margin-bottom: 18px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-stat {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.why-point p:last-child {
  color: var(--on-navy-muted);
  font-size: 0.95rem;
}

.pull-quote {
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent-soft);
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* Closing */
.closing {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

.closing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(224, 113, 36, 0.14), rgba(224, 113, 36, 0));
  pointer-events: none;
  z-index: 0;
}

.closing > .wrap {
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 32px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  .offer-card {
    padding: 24px;
  }

  .testimonial-grid,
  .why-points {
    grid-template-columns: 1fr;
  }
}
