:root {
  --edie-pink: #e22380;
  --edie-pink-hover: #c91e72;
  --edie-pink-active: #b0185f;
  --edie-charcoal: #3f4040;
  --text-muted: #858585;
  --text-soft: #a6a6a6;
  --line: #e8e8e8;
  --surface: #f4f3f1;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --font-heading: "Rubik", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--edie-charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
button, input { font: inherit; }
input { appearance: none; -webkit-appearance: none; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

.container {
  width: min(100% - 128px, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #f0f0f0;
  backdrop-filter: blur(10px);
}
.site-header__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-lockup { display: flex; align-items: center; gap: 16px; min-width: 0; }
.brand-lockup__logo { width: 52px; display: block; flex: 0 0 auto; }
.brand-lockup__divider { width: 1px; height: 20px; background: #dddddd; flex: 0 0 auto; }
.brand-lockup__label {
  font-size: 12px;
  letter-spacing: 0.035em;
  color: #6f6f6f;
  white-space: nowrap;
}

.button {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--edie-pink);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 160ms ease, opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}
.button:hover:not(:disabled) { background: var(--edie-pink-hover); }
.button:active:not(:disabled) { background: var(--edie-pink-active); transform: translateY(1px); }
.button:disabled { background: #ebebeb; color: #ababab; cursor: default; }
.button--header { padding-inline: 24px; font-size: 13px; }

.hero { padding: 78px 0 96px; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 92px;
  align-items: center;
}
.hero__logo {
  width: 300px;
  display: block;
  margin: 0 0 18px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(52px, 5vw, 68px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--edie-charcoal);
}
.hero__subtitle {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.5;
  color: #666666;
}
.hero__support {
  margin: 0 0 42px;
  font-size: 15px;
  color: var(--text-soft);
}

.email-form { max-width: 590px; }
.email-form__row { display: flex; align-items: stretch; gap: 10px; }
.email-form__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 0 18px;
  border: 1.5px solid #d7d7d7;
  border-radius: 12px;
  background: var(--white);
  color: var(--edie-charcoal);
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.email-form__input::placeholder { color: #a4a4a4; }
.email-form__input:focus { border-color: var(--edie-pink); }
.email-form__input.is-error { border-color: #d0021b; background: #fff8f8; }
.email-form__input.is-success { border-color: #b8e2cb; background: #f6fdf9; }
.email-form__button { height: 52px; min-height: 52px; min-width: 166px; border-radius: 12px; }
.email-form__message {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-soft);
}
.email-form__message.is-error { color: #d0021b; }
.email-form__success {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid #b8e2cb;
  border-radius: 12px;
  background: #f6fdf9;
  color: #2d6e48;
  font-size: 14px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid #e5e3e0;
  border-radius: var(--radius-md);
  padding: 52px 48px;
  min-height: 390px;
}
.audience-card__icon {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 0 30px;
  border-radius: 14px;
}
.audience-card__eyebrow {
  margin: 0 0 12px;
  color: #747474;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.audience-card__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.audience-card__copy {
  margin: 0;
  max-width: 300px;
  color: #7f7f7f;
  font-size: 15px;
  line-height: 1.7;
}
.audience-card__scope {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid #e6e3e0;
  max-width: 300px;
  color: var(--edie-pink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.workflow-context { background: var(--surface); padding: 74px 0 82px; }
.workflow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
}
.workflow__item { display: flex; flex-direction: column; gap: 5px; }
.workflow__number {
  color: var(--edie-pink);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.workflow__label {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1;
  color: #565656;
}
.workflow__connector {
  height: 1px;
  background: linear-gradient(to right, #dedbd8 calc(100% - 8px), transparent calc(100% - 8px));
  position: relative;
}
.workflow__connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #c9c7c4;
  border-right: 1.5px solid #c9c7c4;
  transform: translateY(-50%) rotate(45deg);
}
.context-copy h2,
.positioning h2,
.final-cta h2 {
  font-family: var(--font-heading);
  color: var(--edie-charcoal);
  letter-spacing: -0.012em;
}
.context-copy h2 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 32px;
  line-height: 1.2;
}
.context-copy p,
.positioning p,
.final-cta p {
  color: #858585;
  font-size: 17px;
  line-height: 1.75;
}
.context-copy p { margin: 0; max-width: 720px; }

.positioning { padding: 86px 0 92px; background: var(--white); }
.positioning__inner { max-width: min(100% - 128px, 1200px); }
.section-rule { width: 34px; height: 1px; background: #e8e8e8; margin-bottom: 34px; }
.positioning h2 { margin: 0 0 18px; font-size: 32px; line-height: 1.2; }
.positioning p { margin: 0; max-width: 650px; }

.final-cta { padding: 96px 0 122px; background: var(--surface); }
.final-cta__inner { max-width: min(100% - 128px, 1200px); }
.final-cta__eyebrow {
  margin: 0 0 34px;
  color: #7b7b7b;
  font-size: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
}
.final-cta h2 { margin: 0 0 22px; max-width: 660px; font-size: 38px; line-height: 1.15; }
.final-cta p { margin: 0 0 42px; max-width: 670px; }
.email-form--final { max-width: 530px; }

.site-footer { background: var(--white); border-top: 1px solid #f0f0f0; padding: 38px 0; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; }
.site-footer__logo { width: 42px; opacity: 0.55; }
.site-footer p { margin: 0; color: #b8b8b8; font-size: 13px; letter-spacing: 0.02em; }

@media (max-width: 1024px) {
  .container, .positioning__inner, .final-cta__inner { width: min(100% - 80px, 1000px); }
  .hero { padding-top: 70px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) 330px; gap: 56px; }
  .hero__logo { width: 250px; margin-bottom: 18px; }
  .hero__title { font-size: 52px; }
  .audience-card { padding: 44px 36px; }
}

@media (max-width: 768px) {
  .container, .positioning__inner, .final-cta__inner { width: min(100% - 48px, 720px); }
  .site-header__inner { height: 56px; }
  .brand-lockup__divider, .brand-lockup__label { display: none; }
  .brand-lockup__logo { width: 48px; }
  .button--header { height: 42px; padding-inline: 22px; }

  .hero { padding: 66px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 54px; }
  .hero__logo { width: 222px; margin-bottom: 24px; }
  .hero__title { font-size: 44px; }
  .hero__subtitle { font-size: 18px; }
  .hero__support { font-size: 14px; margin-bottom: 38px; }

  .email-form__row { flex-direction: column; gap: 10px; }
  .email-form__input,
  .email-form__button {
    display: block;
    width: 100%;
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 14px;
  }
  .email-form__input {
    font-size: 16px;
    padding: 0 18px;
    line-height: normal;
    border-width: 1.5px;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    background-clip: padding-box;
  }

  .audience-card { padding: 42px 36px; min-height: auto; }
  .audience-card__title { font-size: 25px; }

  .workflow-context { padding: 58px 0 66px; }
  .workflow {
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 12px;
    margin-bottom: 40px;
  }
  .workflow__number { font-size: 13px; }
  .workflow__label { font-size: 13px; }
  .context-copy h2, .positioning h2 { font-size: 26px; }
  .context-copy p, .positioning p, .final-cta p { font-size: 16px; }

  .positioning { padding: 70px 0; }
  .final-cta { padding: 76px 0 88px; }
  .final-cta__eyebrow { font-size: 13px; }
  .final-cta h2 { font-size: 30px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .container, .positioning__inner, .final-cta__inner { width: calc(100% - 46px); }
  .hero { padding: 60px 0 64px; }
  .hero__logo { width: 192px; margin-bottom: 28px; }
  .hero__title { font-size: 38px; margin-bottom: 22px; }
  .hero__subtitle { font-size: 16px; }
  .hero__support { font-size: 13px; }
  .email-form__row { gap: 12px; }
  .email-form__input,
  .email-form__button {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 14px;
  }
  .audience-card { padding: 36px 24px; }
  .workflow {
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 8px;
    overflow: hidden;
  }
  .workflow__connector::after { width: 5px; height: 5px; }
  .workflow__number { font-size: 12px; }
  .workflow__label { font-size: 12px; }
  .context-copy h2 { font-size: 23px; }
  .positioning h2 { font-size: 23px; }
  .final-cta h2 { font-size: 25px; }
}
