@font-face {
  font-family: "Atelia";
  src: url("assets/fonts/Atelia.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artific Regular";
  src: url("assets/fonts/artifictrial-regular.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artific Black";
  src: url("assets/fonts/artifictrial-black.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #1e1e1e;
  --cream: #f6f3ed;
  --lime: #d1ff71;
  --teal: #069093;
  --purple: #9192ff;
  --line: rgba(30, 30, 30, 0.16);
  --radius: 28px;
  --shadow: 0 24px 80px rgba(30, 30, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Artific Regular", Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Atelia", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6vw;
  background: rgba(246, 243, 237, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Atelia", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0;
  font-synthesis: none;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.footer a:hover {
  opacity: 0.65;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--lime);
  color: var(--dark);
}

.button {
  padding: 14px 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.16);
}

.primary {
  background: var(--purple);
  color: var(--cream);
  border-color: var(--cream);
}

.secondary {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--cream);
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  padding: 80px 6vw;
  background: var(--dark);
  color: var(--cream);
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.powered-by img {
  height: 34px;
  width: auto;
}

.hero-content {
  max-width: 900px;
  min-width: 0;
}

.hero-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 980px;
  font-size: clamp(40px, 5.8vw, 79px);
  line-height: 1.2em;
  letter-spacing: 0;
  font-weight: normal;
  font-style: normal;
  font-synthesis: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.2em;
  letter-spacing: 0;
  font-weight: normal;
  font-style: normal;
  font-synthesis: none;
}

h3 {
  margin-bottom: 10px;
  font-family: "Artific Black", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2em;
  letter-spacing: 0;
  font-style: normal;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: rgba(246, 243, 237, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 2px solid var(--cream);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--dark);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  overflow: hidden;
}

.hero-card-image {
  width: calc(100% + 68px);
  height: 360px;
  object-fit: cover;
  margin: -34px -34px 20px;
}

.card-label,
.theme-card span,
.skill-card span,
.purpose-steps span,
.timeline-list span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.card-label {
  color: var(--purple);
}

.question-title {
  margin: 0 0 16px;
  font-family: "Atelia", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: normal;
  color: var(--dark);
}

.section {
  padding: 96px 6vw;
  border-top: 1px solid var(--line);
}

.intro {
  position: relative;
  overflow: hidden;
  max-width: none;
  background: var(--lime);
  color: var(--dark);
}

.intro p,
.contact p,
.purpose-copy > p:last-child,
.young-people-intro > p:last-child {
  max-width: 780px;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  background: var(--dark);
  color: var(--cream);
}

.split .eyebrow,
.split h2 {
  color: var(--cream);
}

.grid,
.pricing-grid,
.skills-grid,
.activation-grid {
  display: grid;
  gap: 18px;
}

.grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-card,
.skill-card,
.price-card,
.timeline-list article,
.activation-grid article,
.purpose-steps article {
  padding: 28px;
  border-radius: 24px;
}

.theme-card {
  min-height: 230px;
  border: 0;
  color: var(--dark);
}

.theme-card p,
.price-card p,
.timeline-list p,
.skill-card p,
.purpose-steps p,
.activation-grid p {
  color: rgba(30, 30, 30, 0.72);
}

.theme-card:nth-child(1),
.theme-card:nth-child(4) {
  background: var(--teal);
  color: var(--cream);
}

.theme-card:nth-child(1) p,
.theme-card:nth-child(4) p {
  color: rgba(246, 243, 237, 0.82);
}

.theme-card:nth-child(2) {
  background: var(--lime);
}

.theme-card:nth-child(3) {
  background: var(--purple);
}

.theme-card span,
.skill-card span,
.purpose-steps span,
.timeline-list span {
  color: currentColor;
  opacity: 0.75;
}


.purpose {
  display: block;
  width: 100%;
  background: var(--cream);
  color: var(--dark);
}

.purpose-intro {
  width: 100%;
  max-width: none;
  margin-bottom: 54px;
}

.purpose-intro > p:last-child {
  width: 100%;
  max-width: none;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.purpose-columns {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.purpose-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.purpose-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin-bottom: 22px;
  padding: 14px 30px;
  border: 2px solid var(--dark);
  border-radius: 999px;
  font-size: 1.35rem;
  text-align: center;
}

.hear-pill {
  background: var(--lime);
  color: var(--dark);
  border: 2px solid var(--dark);
  box-sizing: border-box;
}

.understand-pill {
  background: var(--teal);
  color: var(--dark);
  border: 2px solid var(--dark);
  box-sizing: border-box;
}

.act-pill {
  background: var(--purple);
  color: var(--dark);
  border: 2px solid var(--dark);
  box-sizing: border-box;
}

.purpose-column p {
  max-width: none;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: rgba(30, 30, 30, 0.72);
}

.purpose-pledge {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 48px;
  padding: 28px 32px;
  border: 2px solid var(--teal);
  border-radius: 24px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.purpose-pledge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 30px;
  margin-bottom: 22px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  font-family: "Artific Black", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.purpose-pledge p {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 1.1rem;
  color: rgba(246, 243, 237, 0.82);
}

.young-people {
  background: var(--purple);
  color: var(--dark);
}

.young-people {
  background: var(--purple);
  color: var(--dark);
}

.young-people-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.young-people-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
  width: 100%;
}

.young-people-copy {
  width: 100%;
  max-width: none;
}

.young-people-copy .eyebrow,
.young-people-copy h2,
.young-people-copy > p:last-child {
  width: 100%;
  max-width: none;
}

.young-people-copy > p:last-child {
  margin-bottom: 0;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.young-people-image {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 28px;
}

.skills-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
}

.skill-card {
  min-height: 250px;
  background: var(--cream);
}

.skill-card:nth-child(2),
.skill-card:nth-child(5) {
  background: var(--lime);
}

.skill-card:nth-child(3) {
  background: var(--teal);
  color: var(--cream);
}

.skill-card:nth-child(3) p {
  color: rgba(246, 243, 237, 0.82);
}

.skills-note,
.pricing-note {
  width: 100%;
  max-width: none;
  margin: 36px 0 0;
  font-size: 1.1rem;
}

.timeline-note {
  width: 100%;
  max-width: none;
  margin: 36px 0 0;
  font-size: 1.1rem;
  color: rgba(246, 243, 237, 0.78);
}

.timeline {
  background: var(--dark);
  color: var(--cream);
}

.timeline .eyebrow,
.timeline h2 {
  color: var(--cream);
}

.timeline-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: end;
}

.timeline-status {
  padding: 22px;
  border: 2px solid var(--lime);
  border-radius: 22px;
  background: rgba(209, 255, 113, 0.08);
}

.timeline-status span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.timeline-status strong {
  font-family: "Artific Black", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.timeline-list article {
  min-height: 200px;
  background: var(--cream);
  color: var(--dark);
}

.timeline-list article:nth-child(3n + 1) {
  background: var(--teal);
  color: var(--cream);
}

.timeline-list article:nth-child(3n + 1) p {
  color: rgba(246, 243, 237, 0.82);
}

.timeline-list article:nth-child(3n + 2) {
  background: var(--purple);
  color: var(--dark);
}

.timeline-list article:nth-child(3n) {
  background: var(--lime);
  color: var(--dark);
}


.activation {
  background: var(--lime);
  color: var(--dark);
}

.activation-intro {
  width: 100%;
  max-width: none;
  margin-bottom: 42px;
}

.activation-intro .eyebrow {
  margin-bottom: 16px;
}

.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.activation-grid article {
  background: var(--cream);
}

.activation-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}

.activation-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.activation-card-copy {
  padding: 28px;
}

.activation-grid article:nth-child(1) {
  background: var(--dark);
  color: var(--cream);
}

.activation-grid article:nth-child(1) .card-label,
.activation-grid article:nth-child(1) h3 {
  color: var(--cream);
}

.activation-grid article:nth-child(1) p {
  color: rgba(246, 243, 237, 0.82);
}

.activation-grid article:nth-child(2) {
  background: var(--teal);
  color: var(--cream);
}

.activation-grid article:nth-child(2) .card-label,
.activation-grid article:nth-child(2) h3 {
  color: var(--cream);
}

.activation-grid article:nth-child(2) p {
  color: rgba(246, 243, 237, 0.82);
}

.activation-grid article:nth-child(3) {
  background: var(--cream);
  color: var(--dark);
}

.activation-grid article:nth-child(3) .card-label,
.activation-grid article:nth-child(3) h3 {
  color: var(--dark);
}

.activation-grid article:nth-child(3) p {
  color: rgba(30, 30, 30, 0.72);
}

.pricing {
  background: var(--cream);
  color: var(--dark);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.price-card {
  background: var(--dark);
  color: var(--cream);
  border: 0;
}

.price-card p,
.price-card li {
  color: rgba(246, 243, 237, 0.82);
}

.price-card.featured {
  background: var(--lime);
  color: var(--dark);
  transform: translateY(-12px);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p,
.price-card.featured li {
  color: var(--dark);
}

.price {
  margin: 18px 0;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.pricing-note {
  color: rgba(30, 30, 30, 0.68);
}

.hiya {
  background: var(--purple);
  color: var(--dark);
}

.hiya p {
  width: 100%;
  max-width: none;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.hiya a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact {
  text-align: center;
  background: var(--cream);
  color: var(--dark);
}

.contact .eyebrow {
  color: var(--purple);
}

.contact h2 .bridgework {
  color: var(--teal);
}

.contact p {
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  background: var(--lime);
  color: var(--dark);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  font-weight: 800;
  background: var(--cream);
  color: var(--dark);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.purpose-pledge-simple {
  width: 100%;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 2px solid var(--teal);
}

.purpose-pledge-simple span {
  display: block;
  margin-bottom: 14px;

  color: var(--teal);

  font-family: "Artific Black", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.purpose-pledge-simple p {
  width: 100%;
  max-width: none;
  margin: 0;

  color: var(--dark);

  font-size: 1.2rem;
  line-height: 1.65;
}

/* Mobile navigation */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 18px 6vw 26px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(30, 30, 30, 0.12);
}

.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px !important;
  border: 2px solid var(--dark) !important;
  border-radius: 999px;
  background: var(--lime);
  color: var(--dark);
  border-bottom: 2px solid var(--dark);
  font-weight: 800 !important;
}



@media (max-width: 1180px) {
  .nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .skills-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.timeline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero,
  .split,
  .purpose,
  .young-people-intro,
  .timeline-heading,
  .activation-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-card {
    transform: none;
  }

 .activation-intro .eyebrow {
  margin-bottom: 16px;
}

  .grid,
  .pricing-grid,
  .purpose-steps,
  .activation-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid,
  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

   .purpose-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .purpose-column p {
    max-width: 600px;
  }

  .price-card.featured {
    transform: none;
  }

  .timeline-status {
    max-width: 520px;
  }
}


@media (max-width: 640px) {
  .skills-grid,
  .timeline-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    padding: 16px 20px;
  }

  .hero,
  .section {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    overflow: hidden;
  }

  .hero-content,
  .hero-copy,
  .hero-actions,
  .hero-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 2.8rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .nav-cta,
  .menu-toggle span {
    transition: none;
  }
}



