:root {
  --bg: #f5f1e7;
  --text: #16324f;
  --muted: #5f6e75;
  --line: rgba(22, 50, 79, 0.14);
  --accent: #1f5f9b;
  --accent-strong: #16324f;
  --accent-green: #2f8f72;
  --accent-orange: #e58b3a;
  --accent-orange-strong: #c86b1d;
  --shadow: 0 18px 40px rgba(22, 50, 79, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 95, 155, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(47, 143, 114, 0.12), transparent 26%),
    linear-gradient(180deg, #fcfaf4 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 95, 155, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 95, 155, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid rgba(229, 139, 58, 0.9);
  outline-offset: 4px;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.frame {
  width: 100%;
  background: rgba(252, 250, 244, 0.92);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: "Sora", sans-serif;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-green) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(31, 95, 155, 0.18);
}

.mail-link {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 0 9px;
  border-bottom: 2px solid rgba(229, 139, 58, 0.5);
  transition: color 160ms ease, border-color 160ms ease;
}

.masthead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(22, 50, 79, 0.1);
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 56px;
  align-items: stretch;
  padding-top: 24px;
}

.copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-green);
}

h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.96rem, 1.22vw, 1.12rem);
  line-height: 1.65;
  letter-spacing: -0.01em;
  max-width: 50ch;
  font-weight: 500;
}

.intro {
  margin: 16px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.points {
  list-style: none;
  margin-top: auto;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.points li {
  position: relative;
  padding: 0;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.points li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 18px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: rgba(47, 143, 114, 0.55);
}

.actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover,
.mail-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(200, 107, 29, 0.2);
}

.button-secondary {
  border: 1px solid rgba(47, 143, 114, 0.22);
  background: rgba(47, 143, 114, 0.08);
  color: var(--accent-green);
}

.rail {
  display: grid;
  gap: 26px;
  align-self: start;
}

.proof-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.fact {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px solid rgba(31, 95, 155, 0.18);
}

.fact dt,
.fact dd {
  margin: 0;
}

.fact strong {
  font-family: "Sora", sans-serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.fact span,
.note {
  color: var(--muted);
}

.product-callout {
  padding: 18px 0 0 18px;
  border-top: 1px solid var(--line);
  border-left: 2px solid rgba(47, 143, 114, 0.18);
}

.product-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-green);
}

.note {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

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

.note a:hover,
.mail-link:hover {
  color: var(--accent-orange-strong);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 20px, 1120px);
    min-height: auto;
    padding: 18px 0 26px;
  }

  .frame {
    border-radius: 24px;
    padding: 18px;
  }

  .masthead {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
  }

  .stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .brand-subtitle {
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(0.92rem, 3.9vw, 1rem);
    max-width: none;
    line-height: 1.6;
  }

  .intro {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .points {
    gap: 8px;
    margin-top: 18px;
    padding-top: 0;
  }

  .points li {
    font-size: 0.88rem;
  }

  .points li:not(:last-child)::after {
    margin-left: 12px;
  }

  .actions {
    margin-top: 16px;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .button-secondary {
    padding-left: 14px;
    padding-right: 14px;
  }

  .fact {
    gap: 4px;
    padding-left: 14px;
  }

  .fact strong {
    font-size: 1.2rem;
  }

  .note {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .product-callout {
    padding: 14px 0 0 14px;
  }
}
