:root {
  --ink: #111219;
  --cream: #f4ead8;
  --paper: #fbf8f0;
  --coral: #f04f39;
  --blue: #153fb7;
  --green: #6da235;
  --line: rgba(17, 18, 25, 0.22);
  --max: 1440px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--paper);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.65;
}
.site-header {
  height: 78px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  column-gap: clamp(16px, 3vw, 48px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 240, 0.94);
  position: relative;
  z-index: 3;
}
.brand {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.brand span {
  color: var(--coral);
  font-size: 18px;
}
.site-header nav {
  display: flex;
  gap: 32px;
  justify-self: center;
  font-size: 13px;
  font-weight: 700;
}
.site-header nav a:hover {
  color: var(--coral);
}
.site-header > .button {
  justify-self: end;
}
.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.theme-mobile-nav {
  position: absolute;
  z-index: 4;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  gap: 16px;
}
.theme-mobile-nav[hidden],
.theme-mobile-nav[aria-hidden="true"],
.theme-mobile-nav[data-menu-open="false"] {
  display: none;
}
.theme-mobile-nav[data-menu-open="true"] {
  display: grid;
}
.mobile-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.mobile-skip-link:focus-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip-path: none;
  white-space: normal;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  color: white;
  border: 0;
  padding: 15px 19px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.button:hover {
  background: var(--blue);
}
.button--small {
  padding: 11px 15px;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 11px;
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 43% 57%;
  border-bottom: 1px solid var(--line);
}
.hero__copy {
  padding: clamp(60px, 8vw, 120px) clamp(28px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
  margin: 28px 0 34px;
}
.hero h1 em,
.contact h2 em {
  color: var(--coral);
  font-weight: 400;
}
.hero__lede {
  font-size: 18px;
  max-width: 560px;
  margin: 0 0 32px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 13px;
  font-weight: 850;
  border-bottom: 1px solid;
  padding-bottom: 4px;
}
.hero__facts {
  display: flex;
  gap: 44px;
  margin: 62px 0 0;
}
.hero__facts div {
  padding-left: 14px;
  border-left: 3px solid var(--coral);
  min-width: 0;
}
dt {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 900;
}
dd {
  margin: 6px 0 0;
  font-family: Georgia, serif;
  font-size: 17px;
}
.hero__visual {
  margin: 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue);
  color: white;
  padding: 18px 24px;
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}
.hero__visual figcaption span {
  color: #8eadff;
}
.ticker {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  background: var(--coral);
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  overflow: hidden;
}
.ticker i {
  font-style: normal;
  color: var(--ink);
}
section:not(.hero) {
  padding: clamp(70px, 9vw, 140px) clamp(24px, 6vw, 96px);
}
.offer > header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
}
.offer h2,
.about h2,
.faq h2 {
  font-family: Georgia, serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer article {
  padding: 32px 32px 44px 0;
  border-right: 1px solid var(--line);
}
.offer article + article {
  padding-left: 32px;
}
.offer article:last-child {
  border: 0;
}
.offer article > span,
.steps b {
  font-size: 11px;
  color: var(--coral);
  font-weight: 900;
}
.offer h3,
.steps h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  margin: 42px 0 12px;
}
.offer article p,
.steps p {
  font-size: 14px;
  color: #4e4c4a;
}
.proof,
.faq,
.contact {
  padding: clamp(70px, 9vw, 140px) clamp(24px, 6vw, 96px);
}
.proof {
  background: var(--blue);
  color: white;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.proof__number {
  display: flex;
  align-items: end;
  gap: 18px;
  position: relative;
}
.proof__number img {
  position: absolute;
  width: 54px;
  top: -42px;
  left: 0;
}
.proof__number strong {
  font-family: Georgia, serif;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.8;
  color: #8fa9ff;
}
.proof__number span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.proof blockquote {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  margin: 0;
}
.proof blockquote footer {
  font-family: Inter, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-top: 32px;
  color: #aebff8;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.about__orbit {
  width: 170px;
  margin-top: 44px;
}
.about__copy {
  max-width: 650px;
}
.about__copy p {
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.4;
  margin-top: 0;
}
.steps {
  padding-top: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.steps article {
  background: var(--paper);
  padding: 46px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  background: var(--cream);
}
details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
}
details p {
  max-width: 650px;
  color: #55514a;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--coral);
  color: white;
}
.contact h2 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 4vw, 68px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.contact h2 em {
  color: var(--ink);
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
label {
  display: grid;
  gap: 8px;
}
label span {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 12px 0;
  color: white;
  font: inherit;
  outline: none;
}
select option {
  background: var(--paper);
  color: var(--ink);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffdc65;
  outline-offset: 4px;
}
input:focus,
textarea:focus {
  border-color: var(--ink);
}
.wide {
  grid-column: 1/-1;
}
.contact .button {
  margin-top: 8px;
}
.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}
.site-footer {
  padding: 38px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--ink);
  color: white;
}
.site-footer p {
  font-family: Georgia, serif;
}
.site-footer small {
  text-align: right;
  color: #898b93;
}
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }
  .site-header nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 520px;
  }
  .offer > header,
  .proof,
  .about,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }
  .offer__grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .offer article,
  .offer article + article {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof {
    gap: 55px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .site-footer small {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }
  .site-header .button {
    font-size: 0;
    gap: 0;
  }
  .site-header .button:after {
    content: "Join";
    font-size: 12px;
  }
  .hero__copy {
    padding: 64px 22px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero__lede {
    font-size: 16px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero__visual {
    min-height: 420px;
  }
  .hero__visual img {
    object-position: 64% center;
  }
  .ticker {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 14px 22px;
    white-space: normal;
  }
  .ticker > *:nth-child(n + 4) {
    display: none;
  }
  section:not(.hero) {
    padding: 70px 22px;
  }
  .offer h2,
  .about h2,
  .faq h2 {
    font-size: 43px;
  }
  .about__copy p {
    font-size: 20px;
  }
  .steps article {
    padding: 34px 22px;
  }
  .contact {
    gap: 45px;
  }
  .contact h2 {
    font-size: 52px;
  }
  form {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
}

paazaa-form {
  display: block;
}
paazaa-form .pa-form {
  display: grid;
  gap: 24px;
}
paazaa-form .pa-field {
  display: grid;
  gap: 8px;
}
paazaa-form label,
paazaa-form .pa-field label {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
paazaa-form input,
paazaa-form select,
paazaa-form textarea,
paazaa-form .pa-field input,
paazaa-form .pa-field select,
paazaa-form .pa-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
  padding: 12px 0;
  font: inherit;
}
paazaa-form textarea {
  min-height: 110px;
  resize: vertical;
}
paazaa-form button,
paazaa-form .pa-btn,
paazaa-form .pa-btn--primary,
paazaa-form .pa-btn-primary {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 15px 19px;
  font-weight: 800;
  cursor: pointer;
}

/* The importer owns the required Style Guide route; these authored rules keep it
   visibly part of Northstar instead of falling back to an unstyled document. */
.pa-style-guide {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) clamp(22px, 6vw, 96px) 0;
}
.pa-style-guide-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  padding-bottom: clamp(52px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.pa-style-guide-header h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}
.pa-style-guide-header p {
  max-width: 430px;
  margin: 0;
  font-size: 17px;
}
.pa-style-guide-media {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.3fr);
  margin: 0;
  background: var(--blue);
  color: white;
}
.pa-style-guide-media img {
  width: 100%;
  height: min(58vw, 700px);
  object-fit: cover;
}
.pa-style-guide-media figcaption {
  display: flex;
  align-items: end;
  padding: 28px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pa-style-guide > section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 100px);
  padding: clamp(38px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
}
.pa-style-guide > section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pa-style-guide > section p,
.pa-style-guide > section ul,
.pa-style-guide > section .pa-style-guide-grid {
  grid-column: 2;
  margin: 0;
}
.pa-style-guide > section p {
  max-width: 720px;
  font-size: 17px;
}
.pa-style-guide > section ul {
  padding-left: 20px;
  line-height: 1.7;
}
.pa-style-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.pa-style-guide-grid article {
  min-width: 0;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
}
.pa-style-guide-grid article:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.pa-style-guide-grid strong,
.pa-style-guide-grid span {
  display: block;
  overflow-wrap: anywhere;
}
.pa-style-guide-grid strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pa-style-guide-grid span {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}
.pa-style-guide > section:last-child {
  margin-inline: calc(clamp(22px, 6vw, 96px) * -1);
  padding-inline: clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: white;
  border: 0;
}

@media (max-width: 700px) {
  .pa-style-guide {
    padding-top: 54px;
  }
  .pa-style-guide-header,
  .pa-style-guide-media,
  .pa-style-guide > section {
    grid-template-columns: 1fr;
  }
  .pa-style-guide-header h1 {
    font-size: clamp(52px, 17vw, 76px);
  }
  .pa-style-guide-media img {
    height: 430px;
  }
  .pa-style-guide > section p,
  .pa-style-guide > section ul,
  .pa-style-guide > section .pa-style-guide-grid {
    grid-column: 1;
  }
  .pa-style-guide-grid {
    grid-template-columns: 1fr;
  }
  .pa-style-guide-grid article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


.theme-site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  max-width: 100vw;
}

.theme-site-nav,
.theme-footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  min-width: 0;
}

.theme-site-nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.theme-site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  width: 100%;
  max-width: 100vw;
}

.theme-footer-nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.theme-footer-nav a,
.theme-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .theme-site-header,
  .theme-site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .theme-site-nav,
  .theme-footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .theme-site-header .site-nav,
  .theme-site-header .theme-site-nav {
    display: none;
  }

  .theme-site-header .menu-toggle,
  .theme-site-header [data-theme-menu-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    justify-self: end;
    cursor: pointer;
  }

  .theme-site-header .theme-mobile-nav,
  .theme-site-header [data-theme-mobile-nav] {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .theme-site-header .theme-mobile-nav[data-menu-open="true"],
  .theme-site-header [data-theme-mobile-nav][data-menu-open="true"] {
    display: grid;
    gap: 10px;
  }
}