:root {
  --craft-cobalt: #3B7DD8;
  --signal-orange: #F46A1D;
  --spark-chartreuse: #BCD137;
  --sky-aqua: #38BFD0;
  --wonder-plum: #804BBB;
  --story-magenta: #E0388E;
  --paper-cream: #F2EFE6;
  --charcoal-black: #1A1A1A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--charcoal-black);
  color: var(--charcoal-black);
  font-family: "Prompt", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper-cream);
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--signal-orange);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.rule {
  display: block;
  width: 58px;
  height: 4px;
}

.rule--orange {
  background: var(--signal-orange);
}

.rule--magenta {
  background: var(--story-magenta);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 860px;
  background: var(--charcoal-black);
}

.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: var(--charcoal-black);
}

.hero__logo {
  width: min(82.92%, 597px);
}

.hero__copy {
  position: relative;
  min-width: 0;
  border-top: 1px solid var(--charcoal-black);
  border-bottom: 1px solid var(--charcoal-black);
  background: var(--paper-cream);
}

.hero__message {
  position: absolute;
  top: 345px;
  left: 70px;
  right: 34px;
}

.hero__setup {
  margin-top: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 59px;
}

.hero h1 {
  margin-top: 18px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.02;
}

.hero__contact {
  position: absolute;
  right: 34px;
  bottom: 72px;
  left: 70px;
}

.hero__contact p {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

.hero__contact a {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.82;
}

.foundation {
  display: grid;
  grid-template-columns: 47.5% 52.5%;
  min-height: 610px;
  border-bottom: 1px solid var(--charcoal-black);
  background: var(--paper-cream);
}

.foundation__problem {
  padding: 84px 62px 72px 69px;
}

.foundation__problem p {
  max-width: 552px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 67px;
}

.foundation__answer {
  padding: 161px 46px 70px 65px;
  background: var(--charcoal-black);
  color: var(--paper-cream);
}

.foundation__setup {
  max-width: 303px;
  margin-top: 23px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 72px;
}

.foundation__declaration {
  margin-top: 10px;
  font-size: 64px;
  font-weight: 900;
  line-height: 78px;
  white-space: nowrap;
}

.model {
  display: grid;
  grid-template-columns: 730px minmax(0, 1fr);
  grid-template-areas:
    "kicker intro"
    "title intro"
    "cards cards"
    "capital capital";
  grid-template-rows: auto auto auto auto;
  min-height: 720px;
  padding: 66px 80px 48px;
  background: var(--paper-cream);
}

.section-kicker {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 2.2px;
}

.model__heading {
  grid-area: kicker;
}

.model__title {
  grid-area: title;
  margin-top: 14px;
  font-family: "Barlow Condensed", sans-serif;
}

.model__title > p:first-child {
  font-size: 46px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.6px;
}

.model__title h2 {
  margin-top: 4px;
  font-size: 66px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0.2px;
}

.model__attributes {
  margin-top: 0;
  color: var(--signal-orange);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1.5px;
}

.model__intro {
  grid-area: intro;
  width: 470px;
  max-width: 100%;
  margin: 70px 0 0 50px;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.model__cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.process-card {
  position: relative;
  min-height: 186px;
}

.process-card + .process-card::before {
  position: absolute;
  top: 22px;
  bottom: 0;
  left: -24px;
  width: 1px;
  background: rgba(26, 26, 26, 0.16);
  content: "";
}

.process-card__rule {
  display: block;
  width: 132px;
  height: 6px;
}

.process-card--develop .process-card__rule {
  background: var(--craft-cobalt);
}

.process-card--package .process-card__rule {
  background: var(--story-magenta);
}

.process-card--market .process-card__rule {
  background: var(--sky-aqua);
}

.process-card--retain .process-card__rule {
  background: var(--wonder-plum);
}

.process-card h3 {
  margin-top: 19px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.4px;
}

.process-card p,
.process-card ul {
  margin-top: 6px;
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
}

.process-card ul {
  padding-left: 28px;
}

.model__capital {
  grid-area: capital;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding-top: 19px;
  border-top: 1px solid rgba(26, 26, 26, 0.18);
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1.1px;
}

.model__capital span {
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 24px;
  background: var(--signal-orange);
}

.pillars {
  min-height: 760px;
  padding: 56px 70px 69px;
  background: var(--charcoal-black);
  color: var(--paper-cream);
}

.section-kicker--light {
  color: var(--paper-cream);
}

.pillars__heading h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 58px;
  padding-bottom: 180px;
  border-bottom: 1px solid var(--paper-cream);
}

.pillar {
  min-width: 0;
  height: 346px;
  padding: 26px 10px;
  color: var(--paper-cream);
}

.pillar--story {
  background: var(--signal-orange);
}

.pillar--wonder {
  background: var(--wonder-plum);
}

.pillar--craft {
  background: var(--craft-cobalt);
}

.pillar--trust {
  background: var(--spark-chartreuse);
}

.pillar h3 {
  color: var(--charcoal-black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 0.5px;
}

.pillar__rule {
  display: block;
  width: 158px;
  height: 4px;
  margin-top: 4px;
  background: var(--charcoal-black);
}

.pillar p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.pillar--trust p {
  color: var(--charcoal-black);
}

.compact-copy,
.tablet-copy,
.mobile-copy {
  display: none;
}

.closing {
  display: grid;
  grid-template-columns: 64.583% 35.417%;
  min-height: 660px;
  background: var(--charcoal-black);
}

.closing__brand {
  display: flex;
  align-items: flex-start;
  padding: 92px 0 0 108px;
}

.closing__logo {
  width: min(73%, 597px);
}

.closing__copy {
  padding: 240px 43px 50px 60px;
  background: var(--paper-cream);
}

.closing__statement {
  max-width: 407px;
  font-size: 32px;
  font-weight: 500;
  line-height: 35px;
}

.closing__rule {
  display: block;
  width: 190px;
  height: 1px;
  margin-top: 38px;
  background: var(--signal-orange);
}

.closing__contact {
  margin-top: 27px;
}

.closing__contact p {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.closing__contact a {
  display: inline-block;
  margin-top: 19px;
  font-size: 16px;
  line-height: 22px;
}

.closing__legal {
  margin-top: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.65;
}

@media (min-width: 1441px) {
  body {
    background: var(--charcoal-black);
  }

  main {
    width: 1440px;
    margin: 0 auto;
    background: var(--paper-cream);
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .hero {
    display: block;
    min-height: 732px;
  }

  .hero__brand {
    height: 380px;
    padding: 40px;
  }

  .hero__logo {
    width: min(100%, 464px);
  }

  .hero__copy {
    height: 352px;
    padding: 56px;
  }

  .hero__message,
  .hero__contact {
    position: static;
  }

  .hero__message {
    width: 100%;
  }

  .hero__setup {
    margin-top: 16px;
    font-size: 48px;
    line-height: 50px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 52px;
    line-height: 56px;
  }

  .hero__contact {
    margin-top: 32px;
  }

  .hero__contact p {
    font-size: 20px;
    line-height: normal;
  }

  .hero__contact a {
    margin-top: 12px;
    font-size: 16px;
  }

  .foundation {
    display: block;
    min-height: 480px;
  }

  .foundation__problem {
    height: 208px;
    padding: 56px;
  }

  .foundation__problem p {
    max-width: none;
    font-size: 44px;
    line-height: 48px;
  }

  .foundation__answer {
    height: 271px;
    padding: 56px;
  }

  .foundation__setup {
    max-width: none;
    margin-top: 24px;
    font-size: 48px;
    line-height: 52px;
  }

  .foundation__declaration {
    margin-top: 24px;
    font-size: 48px;
    line-height: 56px;
  }

  .model {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "cards"
      "intro"
      "capital";
    grid-template-rows: auto;
    min-height: 1532px;
    padding: 64px 56px;
  }

  .model__title {
    margin-top: 40px;
  }

  .section-kicker {
    line-height: 24px;
  }

  .model__title > p:first-child {
    font-size: 36px;
    line-height: normal;
  }

  .model__title h2 {
    margin-top: 16px;
    font-size: 52px;
    line-height: 54px;
  }

  .model__attributes {
    margin-top: 16px;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 1px;
  }

  .model__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .process-card {
    min-height: auto;
    padding: 23px 24px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 8px;
    background: var(--paper-cream);
  }

  .process-card + .process-card::before {
    display: none;
  }

  .process-card h3 {
    margin-top: 16px;
  }

  .process-card p,
  .process-card ul {
    margin-top: 16px;
  }

  .process-card--develop {
    min-height: 149px;
  }

  .process-card--package,
  .process-card--market {
    min-height: 203px;
  }

  .process-card--retain {
    min-height: 230px;
  }

  .model__intro {
    width: auto;
    margin: 40px 0 0;
    font-size: 20px;
    line-height: 1.5;
  }

  .model__capital {
    gap: 12px;
    margin-top: 40px;
    padding-top: 39px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1px;
  }

  .pillars {
    min-height: 794px;
    padding: 64px 56px;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .pillar {
    height: 280px;
    padding: 28px;
    border-radius: 8px;
  }

  .pillar h3 {
    font-size: 44px;
    line-height: normal;
  }

  .pillar__rule {
    width: 100px;
    height: 3px;
    margin-top: 20px;
  }

  .pillar p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.4;
  }

  .desktop-copy,
  .mobile-copy {
    display: none;
  }

  .compact-copy,
  .tablet-copy {
    display: inline;
  }

  .closing {
    display: block;
    min-height: 820px;
  }

  .closing__brand {
    align-items: flex-start;
    justify-content: center;
    height: 466px;
    padding: 40px;
  }

  .closing__logo {
    width: min(100%, 688px);
  }

  .closing__copy {
    height: 354px;
    padding: 56px;
  }

  .closing__statement {
    max-width: none;
    font-size: 24px;
    line-height: 32px;
  }

  .closing__rule {
    margin-top: 32px;
  }

  .closing__contact {
    margin-top: 31px;
  }

  .closing__contact p {
    font-size: 22px;
    line-height: 33px;
  }

  .closing__contact a {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
  }

  .closing__legal {
    margin-top: 24px;
    font-size: 15px;
    letter-spacing: 2px;
  }
}

@media (max-width: 599px) {
  .rule {
    width: 40px;
    height: 3px;
  }

  .hero {
    display: block;
    min-height: 552px;
  }

  .hero__brand {
    height: 260px;
    padding: 16px;
  }

  .hero__logo {
    width: min(100%, 353px);
  }

  .hero__copy {
    height: 292px;
    padding: 40px 24px;
  }

  .hero__message,
  .hero__contact {
    position: static;
  }

  .hero__setup {
    margin-top: 12px;
    font-size: 32px;
    line-height: 34px;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: 36px;
    line-height: 40px;
  }

  .hero__contact {
    margin-top: 24px;
  }

  .hero__contact p {
    font-size: 16px;
    line-height: 24px;
  }

  .hero__contact a {
    margin-top: 2px;
    font-size: 14px;
    line-height: 21px;
  }

  .foundation {
    display: block;
    min-height: 361px;
  }

  .foundation__problem {
    height: 176px;
    padding: 40px 24px;
  }

  .foundation__problem p {
    max-width: none;
    font-size: 32px;
    line-height: 32px;
  }

  .foundation__answer {
    height: 184px;
    padding: 40px 24px;
  }

  .foundation__setup {
    max-width: none;
    margin-top: 16px;
    font-size: 30px;
    line-height: 34px;
  }

  .foundation__declaration {
    margin-top: 16px;
    font-size: 30px;
    line-height: 36px;
  }

  .model {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "intro"
      "cards"
      "capital";
    grid-template-rows: auto;
    min-height: 1348px;
    padding: 48px 24px;
  }

  .section-kicker {
    gap: 8px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1.5px;
  }

  .model__title {
    margin-top: 28px;
  }

  .model__title > p:first-child {
    font-size: 24px;
    line-height: normal;
  }

  .model__title h2 {
    margin-top: 12px;
    font-size: 36px;
    line-height: 40px;
  }

  .model__attributes {
    margin-top: 12px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 1px;
  }

  .model__intro {
    width: auto;
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .model__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .process-card {
    min-height: auto;
    padding: 19px 20px;
    border: 1px solid var(--charcoal-black);
    border-radius: 6px;
    background: var(--paper-cream);
  }

  .process-card + .process-card::before {
    display: none;
  }

  .process-card h3 {
    margin-top: 12px;
  }

  .process-card p,
  .process-card ul {
    margin-top: 12px;
  }

  .process-card--develop {
    min-height: 160px;
  }

  .process-card--package,
  .process-card--market {
    min-height: 187px;
  }

  .process-card--retain {
    min-height: 214px;
  }

  .model__capital {
    gap: 8px;
    margin-top: 28px;
    padding-top: 27px;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 0.5px;
  }

  .model__capital span {
    width: 5px;
    height: 36px;
  }

  .pillars {
    min-height: 842px;
    padding: 48px 24px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .pillar {
    height: 160px;
    padding: 20px;
    border-radius: 6px;
  }

  .pillar h3 {
    font-size: 28px;
    line-height: normal;
  }

  .pillar__rule {
    width: 60px;
    height: 2px;
    margin-top: 12px;
  }

  .pillar p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .desktop-copy,
  .tablet-copy {
    display: none;
  }

  .compact-copy,
  .mobile-copy {
    display: inline;
  }

  .closing {
    display: block;
    min-height: 718px;
  }

  .closing__brand {
    align-items: flex-start;
    height: 418px;
    padding: 16px;
  }

  .closing__logo {
    width: 100%;
  }

  .closing__copy {
    height: 300px;
    padding: 40px 24px;
  }

  .closing__statement {
    font-size: 20px;
    line-height: 26px;
  }

  .closing__rule {
    width: 140px;
    margin-top: 24px;
  }

  .closing__contact {
    margin-top: 23px;
  }

  .closing__contact p {
    font-size: 18px;
    line-height: 27px;
  }

  .closing__contact a {
    margin-top: 5px;
    font-size: 14px;
    line-height: 21px;
  }

  .closing__legal {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

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