:root {
  --purple: #1a006d;
  --purple-deep: #0f0042;
  --pink: #ff0064;
  --white: #ffffff;
  --soft: #f5f2ff;
  --ink: #160342;
  --cyan: #00bce7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--purple);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: var(--white); color: var(--purple);
  transform: translateY(-150%); transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; z-index: 50; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  width: min(1180px, calc(100% - 40px)); min-height: 86px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: rgba(26,0,109,.9); backdrop-filter: blur(18px);
}
.brand img { width: 210px; height: auto; }
nav {
  display: flex; align-items: center; gap: 30px;
  font-size: .87rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
nav > a:not(.nav-cta) { position: relative; padding-block: 12px; }
nav > a:not(.nav-cta)::after {
  position: absolute; right: 0; bottom: 5px; left: 0; height: 2px;
  background: var(--pink); content: ""; transform: scaleX(0); transition: transform 180ms ease;
}
nav > a:hover::after, nav > a:focus-visible::after { transform: scaleX(1); }
.nav-cta {
  padding: 13px 18px; border-radius: 999px; background: var(--pink);
  box-shadow: 0 10px 30px rgba(255,0,100,.24);
}

.hero {
  position: relative; display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: 70px; align-items: center;
  width: min(1180px, calc(100% - 40px)); min-height: calc(100vh - 86px);
  margin: 0 auto; padding: 72px 0 88px;
}
.hero::before {
  position: absolute; z-index: -1; top: 1%; left: -20%; width: 640px; height: 640px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,0,100,.18), rgba(255,0,100,0) 68%);
  content: ""; filter: blur(10px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--pink);
  font-size: .78rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase;
}
.eyebrow::before {
  width: 28px; height: 3px; border-radius: 999px; background: currentColor; content: "";
}
.hero h1 {
  max-width: 760px; margin: 18px 0 22px;
  font-size: clamp(3.5rem, 7.4vw, 7.2rem); font-weight: 950;
  letter-spacing: -.075em; line-height: .82;
}
.hero h1 strong {
  display: block; margin-top: 16px; color: var(--pink);
  font-size: 1.18em; letter-spacing: -.04em; line-height: .8;
}
.hero-lead {
  max-width: 590px; margin: 0; color: rgba(255,255,255,.82);
  font-size: clamp(1.08rem, 2vw, 1.34rem); font-weight: 600; line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 22px; border: 2px solid transparent; border-radius: 999px;
  font-size: .9rem; font-weight: 900; letter-spacing: .025em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); box-shadow: 0 16px 34px rgba(255,0,100,.3); }
.button-secondary { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.07); }
.button-secondary:hover { background: rgba(255,255,255,.14); }
.hero-note {
  display: flex; align-items: center; gap: 10px; margin-top: 24px;
  color: rgba(255,255,255,.7); font-size: .9rem;
}
.note-mark {
  display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--pink); font-weight: 900;
}

.hero-visual {
  position: relative; isolation: isolate; width: min(100%, 510px); justify-self: end;
  padding: 16px 16px 0 0;
}
.hero-visual::before {
  position: absolute; z-index: -2; inset: -22px -20px 45px 35px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 48% 48% 30px 30px;
  content: ""; transform: rotate(3deg);
}
.portrait-frame {
  overflow: hidden; aspect-ratio: .72; border: 5px solid var(--white);
  border-radius: 48% 48% 30px 30px; background: var(--white);
  box-shadow: 0 35px 80px rgba(5,0,35,.45);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-stamp {
  position: absolute; z-index: 3; right: -52px; bottom: 48px; width: 205px;
  overflow: hidden; border: 3px solid var(--white); border-radius: 24px;
  filter: drop-shadow(0 14px 25px rgba(5,0,35,.4));
}
.hero-ribbon {
  position: absolute; z-index: 4; top: 52px; left: -54px;
  display: flex; flex-direction: column; align-items: center; padding: 12px 18px 10px;
  border: 3px solid var(--white); border-radius: 16px; background: var(--pink);
  box-shadow: 0 18px 40px rgba(5,0,35,.35); transform: rotate(-6deg);
}
.hero-ribbon span { font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.hero-ribbon strong { font-size: 2.05rem; letter-spacing: -.04em; line-height: 1; }

.commitment-strip {
  display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 54px);
  overflow: hidden; min-height: 90px; padding: 20px; background: var(--pink);
  font-size: clamp(1rem, 2vw, 1.5rem); font-weight: 950; letter-spacing: -.02em;
  text-transform: uppercase; white-space: nowrap;
}
.commitment-strip span { opacity: .55; }

.proposals-section {
  padding: 118px max(20px, calc((100vw - 1180px) / 2)) 130px;
  background: var(--soft); color: var(--ink);
}
.section-heading {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 52px;
}
.section-heading h2, .download-panel h2 {
  margin: 14px 0 0; font-size: clamp(2.45rem, 5vw, 4.9rem);
  font-weight: 950; letter-spacing: -.065em; line-height: .95;
}
.section-heading > p {
  max-width: 460px; margin: 0 0 5px; color: #594f75; font-size: 1.05rem; line-height: 1.65;
}
.proposal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.proposal-card {
  position: relative; overflow: hidden; min-height: 455px; padding: 28px;
  border: 1px solid #e5dff5; border-radius: 24px; background: var(--white);
  box-shadow: 0 16px 50px rgba(26,0,109,.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.proposal-card::after {
  position: absolute; right: -42px; bottom: -70px; width: 145px; height: 145px;
  border: 22px solid rgba(255,0,100,.055); border-radius: 50%; content: "";
}
.proposal-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(26,0,109,.13); }
.proposal-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.proposal-number { color: var(--pink); font-size: .82rem; font-weight: 950; letter-spacing: .14em; }
.proposal-icon {
  display: grid; width: 54px; height: 54px; place-items: center; border-radius: 18px;
  background: #fff0f6; color: var(--pink);
}
.proposal-card h3 {
  min-height: 72px; margin: 0 0 12px; font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 950; letter-spacing: -.045em; line-height: 1.08; text-transform: uppercase;
}
.proposal-lead { margin: 0 0 22px; color: var(--pink); font-size: .94rem; font-weight: 850; line-height: 1.45; }
.proposal-card ul {
  position: relative; z-index: 2; display: grid; gap: 12px; margin: 0; padding: 0;
  color: #514769; font-size: .88rem; line-height: 1.45; list-style: none;
}
.proposal-card li { position: relative; padding-left: 18px; }
.proposal-card li::before {
  position: absolute; top: .52em; left: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--pink); content: "";
}

.profile-cta {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: minmax(210px, .52fr) 1.1fr;
  gap: clamp(38px, 7vw, 92px); align-items: center;
  width: min(1180px, calc(100% - 40px)); margin: 88px auto 0; padding: 58px 72px;
  border: 1px solid rgba(255,255,255,.26); border-radius: 36px;
  background: linear-gradient(135deg, #ff0064 0%, #ef005e 58%, #d90055 100%);
  box-shadow: 0 30px 80px rgba(7,0,43,.36);
}
.profile-cta::before {
  position: absolute; z-index: -1; right: -110px; top: -150px; width: 390px; height: 390px;
  border: 58px solid rgba(255,255,255,.08); border-radius: 50%; content: "";
}
.profile-portrait {
  position: relative; width: min(100%, 270px); aspect-ratio: 1; justify-self: center;
  overflow: visible; border: 7px solid var(--white); border-radius: 50%;
  background: var(--white); box-shadow: 0 24px 55px rgba(77,0,40,.34);
}
.profile-portrait img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 14%;
}
.profile-portrait span {
  position: absolute; right: -14px; bottom: 12px; display: grid; min-width: 92px; height: 50px;
  place-items: center; padding: 0 13px; border: 3px solid var(--white); border-radius: 999px;
  background: var(--purple); color: var(--white); font-size: 1.35rem; font-weight: 950;
  letter-spacing: -.03em;
}
.profile-kicker {
  display: block; margin-bottom: 12px; color: rgba(255,255,255,.76);
  font-size: .76rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase;
}
.profile-copy h2 {
  max-width: 720px; margin: 0; font-size: clamp(2.65rem, 5vw, 5.3rem);
  font-weight: 950; letter-spacing: -.07em; line-height: .9; text-transform: uppercase;
}
.profile-copy p {
  max-width: 620px; margin: 22px 0 28px; color: rgba(255,255,255,.86);
  font-size: 1.02rem; line-height: 1.6;
}
.profile-button {
  background: var(--white); color: var(--purple); box-shadow: 0 15px 34px rgba(77,0,40,.24);
}
.profile-button span { font-size: 1.2rem; }

.download-panel {
  display: grid; grid-template-columns: .9fr .7fr; gap: 80px; align-items: center;
  width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 112px 0;
}
.download-copy p {
  max-width: 570px; margin: 24px 0 30px; color: rgba(255,255,255,.76);
  font-size: 1.05rem; line-height: 1.65;
}
.eyebrow-dark { color: #ff72aa; }
.button-dark { background: var(--white); color: var(--purple); box-shadow: 0 16px 35px rgba(5,0,35,.25); }
.download-art { position: relative; width: min(100%, 455px); justify-self: end; }
.download-art::before {
  position: absolute; z-index: -1; inset: -18px 18px 22px -18px;
  border: 3px solid var(--pink); border-radius: 28px; content: ""; transform: rotate(-4deg);
}
.download-art img {
  width: 100%; aspect-ratio: 1; border: 4px solid var(--white); border-radius: 24px;
  object-fit: cover; box-shadow: 0 28px 70px rgba(5,0,35,.38); transform: rotate(2deg);
}

.closing-section {
  display: flex; align-items: center; justify-content: center; gap: clamp(24px, 6vw, 90px);
  min-height: 300px; padding: 50px 24px; background: var(--white); color: var(--purple);
}
.closing-section > img { width: min(280px, 38vw); }
.closing-section > div { display: flex; flex-direction: column; }
.closing-section span {
  font-size: clamp(.85rem, 2vw, 1.2rem); font-weight: 900; letter-spacing: .15em; text-transform: uppercase;
}
.closing-section strong {
  color: var(--pink); font-size: clamp(3.1rem, 9vw, 7.8rem); font-weight: 950;
  letter-spacing: -.07em; line-height: .9;
}

footer {
  display: flex; align-items: center; gap: 28px;
  width: min(1180px, calc(100% - 40px)); min-height: 140px; margin: 0 auto;
  color: rgba(255,255,255,.7); font-size: .78rem;
}
footer img { width: 205px; }
footer p { margin: 0; }
footer .legal { max-width: 560px; margin-left: auto; text-align: right; line-height: 1.55; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 380px; gap: 35px; }
  .proposal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-panel { gap: 48px; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 28px); min-height: 72px; }
  .brand img { width: 166px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 11px 14px; font-size: .72rem; }
  .hero { grid-template-columns: 1fr; gap: 66px; min-height: 0; padding: 68px 0 90px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .hero-visual { width: min(88%, 470px); justify-self: center; }
  .hero-stamp { right: -28px; width: 165px; }
  .hero-ribbon { left: -28px; }
  .commitment-strip { justify-content: flex-start; }
  .section-heading, .download-panel { grid-template-columns: 1fr; }
  .proposals-section { padding-top: 88px; padding-bottom: 90px; }
  .section-heading { gap: 28px; }
  .proposal-grid { grid-template-columns: 1fr; }
  .proposal-card { min-height: 0; }
  .proposal-card h3 { min-height: 0; }
  .profile-cta { grid-template-columns: 1fr; gap: 34px; padding: 44px 34px; text-align: center; }
  .profile-portrait { width: min(66vw, 230px); }
  .profile-copy p { margin-right: auto; margin-left: auto; }
  .download-panel { padding: 90px 0 100px; }
  .download-art { width: min(88%, 440px); justify-self: center; }
  .closing-section { min-height: 240px; }
  footer { flex-direction: column; align-items: flex-start; gap: 15px; padding: 38px 0; }
  footer .legal { margin-left: 0; text-align: left; }
}

@media (max-width: 470px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-ribbon { top: 34px; left: -16px; }
  .hero-stamp { right: -18px; bottom: 22px; width: 138px; }
  .proposal-card { padding: 24px; }
  .closing-section { flex-direction: column; gap: 8px; text-align: center; }
  .closing-section > img { width: 205px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
