:root {
  --accent: #BE5103;
  --accent-dark: #8f3d02;
  --text: #242424;
  --muted: #666666;
  --soft: #f7f5f2;
  --soft-2: #eee9e3;
  --border: #e4ddd5;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(70, 49, 30, 0.08);
  --radius: 22px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-dark);
}

.site-header {
  padding: 22px 20px;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
  font-size: 2.0rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e7a36c 0%, var(--accent) 44%, #7f3500 100%);
  box-shadow: 0 8px 20px rgba(190, 81, 3, 0.22);
}

.brand span {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  margin-top: 2px;
}

.header-link {
  font-size: 0.95rem;
  font-weight: 650;
}

main {
  padding: 18px 20px 60px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 190px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(190, 81, 3, 0.08);
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-copy {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #4f4a46;
  max-width: 650px;
  margin-bottom: 24px;
}

.reassurance {
  color: var(--muted);
  font-size: 0.98rem;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-card {
  padding: clamp(24px, 5vw, 38px);
  position: relative;
  overflow: hidden;
}

.signup-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--accent), #d8955d, var(--accent));
}

.signup-card h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.signup-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.real-form {
  margin-top: 12px;
}

.video-section {
  max-width: var(--max);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
}

.section-label {
  color: var(--accent-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  margin-bottom: 10px;
}

.video-section h2,
.closing h2 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.video-section p,
.closing p {
  color: var(--muted);
  margin-bottom: 18px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #ddd;
  display: block;
}

.closing {
  max-width: var(--max);
  margin: 42px auto 0;
  text-align: center;
  padding: clamp(26px, 5vw, 42px);
}

.closing p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 999px;
  font-size: 0.96rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 750;
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease;
  box-shadow: 0 10px 22px rgba(190, 81, 3, 0.2);
}

.button:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  padding: 26px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional GetResponse styling improvements */

getresponse-form {
  display: block;
  width: 100%;
}

iframe[src*="getresponse"] {
  width: 100% !important;
  border: 0 !important;
  border-radius: 14px;
  overflow: hidden;
}

/* Responsive */

@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
  }

  .header-link {
    font-size: 0.88rem;
  }

  .hero,
  .video-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 22px;
  }

  .video-section {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .site-header,
  main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-link {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }
}