:root {
  --bg: #f9fafb;
  --bg-elevated: #ffffff;
  --bg-soft: #f3f4f6;
  --accent: rgb(206, 12, 12);
  --accent-soft: rgba(206, 12, 12, 0.12);
  --accent-strong: rgba(206, 12, 12, 0.7);
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: rgba(156, 163, 175, 0.6);
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.08);
  --page-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  height: auto;
  max-height: 32px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  padding: 4px 0;
}

.nav-link:hover {
  color: #111827;
}

.nav-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #f9fafb;
}

.nav-cta:hover {
  background-color: #7f0c0c;
}

.hero {
  flex: 1;
  display: flex;
  align-items: stretch;
  background: radial-gradient(circle at top left, #ffffff, #f3f4f6);
}

.hero-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 64px 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
  }
}

.hero-copy {
  max-width: 680px;
  padding-bottom: 80px;
}

@media (min-width: 960px) {
  .hero-copy {
    padding-bottom: 80px;
  }
}

.hero-image {
  display: none;
}

@media (min-width: 960px) {
  .hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    margin-bottom: -80px;
    padding-bottom: 0;
    position: relative;
  }

  .hero-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0;
    display: block;
  }
}

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

h1 {
  font-size: clamp(40px, 5vw + 16px, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(120deg, var(--accent), #b91c1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
}

.hero-form-card {
  background-color: var(--bg-elevated);
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(209, 213, 219, 0.6);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  margin-top: 8px;
}

@media (min-width: 640px) {
  .hero-form-card {
    padding: 32px 28px 28px;
  }
}

.hero-form-card h2 {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 600;
}

.form-subcopy {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.form-subcopy:last-of-type {
  margin-bottom: 20px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 13px;
  color: #e5e7eb;
}

input,
textarea {
  border-radius: 9px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background-color: #ffffff;
  color: var(--text);
  padding: 9px 11px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.14s ease, box-shadow 0.14s ease,
    background-color 0.14s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(156, 163, 175, 0.9);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(206, 12, 12, 0.3);
  background-color: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 84px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  background: radial-gradient(circle at 20% 0%, #ef4444, var(--accent));
  border: none;
  color: #f9fafb;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  text-decoration: none;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(185, 28, 28, 0.55);
  filter: brightness(1.03);
}

.primary-btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.6);
}

.footnote {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.primary-btn-full {
  width: 100%;
  margin-top: 6px;
}

.inside-section {
  background-color: #ffffff;
  border-top: 1px solid rgba(209, 213, 219, 0.5);
  padding: 80px 0 96px;
}

.inside-inner {
  padding-top: 24px;
}

.inside-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.inside-header p {
  margin: 0 0 32px;
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
}

.inside-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .inside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .inside-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.inside-item {
  padding: 20px;
  border-radius: 12px;
  background-color: var(--bg-elevated);
  border: 1px solid rgba(209, 213, 219, 0.4);
}

.inside-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.inside-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.inside-cta {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: left;
}

.problem-section {
  background-color: var(--bg);
  padding: 80px 0;
  border-top: 1px solid rgba(209, 213, 219, 0.5);
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem-section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.2;
}

.problem-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
}

.problem-section p:last-child {
  margin-bottom: 0;
}

.for-you-section {
  padding: 80px 0;
  border-top: 1px solid rgba(209, 213, 219, 0.5);
  position: relative;
}

.for-you-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./brie-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}

.for-you-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.for-you-section .container {
  position: relative;
  z-index: 2;
}

.for-you-section h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.for-you-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-you-list li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  padding-left: 32px;
  position: relative;
}

.for-you-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.brie-section {
  background-color: var(--bg);
  padding: 80px 0;
  border-top: 1px solid rgba(209, 213, 219, 0.5);
}

.brie-content h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: rgb(206, 12, 12);
}

.brie-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .brie-layout {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}

.brie-image {
  display: none;
}

@media (min-width: 768px) {
  .brie-image {
    display: block;
  }

  .brie-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
}

.brie-content {
  max-width: 800px;
}

.brie-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
}

.brie-content p:last-child {
  margin-bottom: 0;
}

.pricing-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-top: 1px solid rgba(209, 213, 219, 0.5);
}

.pricing-section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}

.pricing-subhead {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--bg-elevated);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(209, 213, 219, 0.6);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 32px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.site-footer {
  background-color: #000000;
  padding: 48px 20px;
}

.footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo {
  height: auto;
  max-width: 200px;
  display: block;
}

.footer-text {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.hidden {
  display: none;
}

@media (max-width: 959px) {
  .hero-inner {
    padding-top: 32px;
  }

  .header-inner {
    padding-inline: 16px;
  }

  .main-nav {
    display: none;
  }
}


