@font-face {
  font-family: "Jersey";
  src: url("assets/fonts/Jersey25-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 200 1000;
}

:root {
  --ink: #10131a;
  --navy: #15223e;
  --navy-2: #0c1427;
  --paper: #fff9ec;
  --cream: #f5ead5;
  --orange: #f47a18;
  --orange-dark: #c84e08;
  --green: #63f26d;
  --green-dark: #167c3b;
  --blue: #79cfff;
  --line: #1a1d24;
  --shadow: 8px 8px 0 var(--line);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 19, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 26, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: white;
  border: 3px solid var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  width: min(1180px, calc(100% - 36px));
  height: 94px;
  margin: 18px auto 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 249, 236, 0.91);
  border: 3px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 14px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 80px;
  image-rendering: pixelated;
}

nav {
  display: flex;
  gap: 26px;
}

nav a,
.text-link,
footer a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

nav a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 23px;
  color: white;
  background: var(--orange);
  border: 3px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  font-weight: 900;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--line);
}

.button-small {
  min-height: 42px;
  padding: 7px 15px;
  font-size: 14px;
}

.hero {
  width: min(1240px, calc(100% - 36px));
  min-height: 720px;
  margin: 0 auto;
  padding: 84px 22px 70px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  background: var(--green);
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--line);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-2);
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Jersey", monospace;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(62px, 7vw, 104px);
}

h1 span {
  color: var(--orange);
  text-shadow: 4px 4px 0 var(--line);
  -webkit-text-stroke: 2px var(--line);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(48px, 5vw, 72px);
}

h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.05;
}

.hero-lede {
  max-width: 620px;
  margin: 0 0 30px;
  color: #3a3f4c;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-proof {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof span {
  padding: 7px 10px;
  background: white;
  border: 2px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

.hero-proof b {
  color: var(--orange-dark);
  font-family: "Jersey";
  font-size: 20px;
}

.hero-art {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art img {
  width: 115%;
  max-width: none;
  z-index: 2;
  image-rendering: pixelated;
  filter: drop-shadow(10px 13px 0 rgba(16, 19, 26, 0.18));
}

.pixel-sun {
  position: absolute;
  width: 79%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  border: 4px solid var(--line);
  box-shadow: 12px 12px 0 var(--orange);
}

.time-chip {
  position: absolute;
  z-index: 4;
  padding: 7px 12px;
  font-family: "Jersey";
  font-size: 22px;
  letter-spacing: 0.04em;
  background: var(--green);
  border: 3px solid var(--line);
  box-shadow: 4px 4px 0 var(--line);
}

.chip-one {
  top: 18%;
  left: 2%;
  transform: rotate(-5deg);
}

.chip-two {
  right: 0;
  bottom: 18%;
  color: white;
  background: var(--navy);
  transform: rotate(4deg);
}

.usp-section,
.product-section,
.story-section,
.how-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: #4d5260;
  font-size: 19px;
  font-weight: 650;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usp-card {
  min-height: 330px;
  padding: 34px 30px 28px;
  position: relative;
  background: white;
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
}

.usp-card.featured {
  background: #fff0de;
  transform: translateY(-14px);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #bbc0c8;
  font-family: "Jersey";
  font-size: 26px;
}

.usp-icon {
  width: 68px;
  height: 62px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--navy-2);
  background: var(--green);
  border: 3px solid var(--line);
  box-shadow: 4px 4px 0 var(--line);
  font-family: "Jersey";
  font-size: 29px;
}

.usp-card.featured .usp-icon {
  color: white;
  background: var(--orange);
}

.usp-card p {
  margin-bottom: 0;
  color: #4d5260;
}

.product-section {
  padding-top: 120px;
}

.product-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.product-heading > p:last-child {
  color: #4d5260;
  font-size: 19px;
  font-weight: 650;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.62fr);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
}

.product-shot {
  min-width: 0;
}

.product-label {
  min-height: 88px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-label span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.13em;
}

.product-label strong {
  color: var(--navy-2);
  font-family: "Jersey";
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.mac-frame,
.phone-frame {
  position: relative;
  overflow: hidden;
  background: #0d1426;
  border: 4px solid var(--line);
  box-shadow: 12px 12px 0 var(--line);
}

.mac-frame {
  padding-top: 34px;
  border-radius: 12px 12px 3px 3px;
}

.mac-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 34px;
  padding-left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #edf0f5;
  border-bottom: 3px solid var(--line);
}

.mac-toolbar i {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border: 2px solid var(--line);
  border-radius: 50%;
}

.mac-toolbar i:nth-child(2) {
  background: #ffd058;
}

.mac-toolbar i:nth-child(3) {
  background: var(--green);
}

.mac-frame img {
  width: 100%;
}

.phone-product {
  margin-top: -36px;
}

.phone-frame {
  max-height: 690px;
  border-radius: 34px;
}

.phone-frame img {
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.story-section {
  padding-top: 120px;
}

.story-row {
  margin: 100px 0 150px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.story-row.reverse .story-image {
  order: 2;
}

.story-image {
  position: relative;
  border: 4px solid var(--line);
  box-shadow: 12px 12px 0 var(--line);
  overflow: hidden;
}

.story-image::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.orange-frame {
  background: var(--orange);
  transform: rotate(-1.5deg);
}

.green-frame {
  background: var(--green);
  transform: rotate(1.5deg);
}

.blue-frame {
  background: var(--blue);
  transform: rotate(-1deg);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
}

.story-kicker {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.story-copy h3 {
  font-family: "Jersey";
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
}

.story-copy > p:not(.story-kicker, .experience-note) {
  color: #454a57;
  font-size: 18px;
}

.story-answer {
  padding: 19px 20px;
  background: white;
  border-left: 6px solid var(--green-dark);
  box-shadow: 4px 4px 0 rgba(16, 19, 26, 0.13);
}

.story-answer span {
  color: var(--navy-2);
  font-weight: 1000;
}

.experience-note {
  color: #777b84;
  font-size: 12px;
}

.economy-section {
  padding: 105px max(24px, calc((100vw - 1160px) / 2));
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(99, 242, 109, 0.13), transparent 25%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  border-block: 4px solid var(--line);
}

.economy-section .eyebrow {
  color: var(--green);
}

.economy-section h2 {
  max-width: 760px;
  color: white;
}

.economy-copy > p:not(.eyebrow) {
  max-width: 750px;
  color: #dce5f5;
  font-size: 19px;
}

.economy-copy small {
  color: #99a5b8;
}

.economy-flow {
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.economy-flow li:not(:has(.flow-arrow)) {
  min-height: 190px;
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1c2d4d;
  border: 3px solid #64728a;
  box-shadow: 6px 6px 0 #050914;
}

.flow-icon {
  width: 60px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 3px solid #050914;
  font-family: "Jersey";
  font-size: 27px;
}

.economy-flow b {
  font-family: "Jersey";
  font-size: 30px;
  font-weight: 400;
}

.economy-flow small {
  color: #b9c5d8;
}

.flow-arrow {
  color: var(--orange);
  font-family: "Jersey";
  font-size: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.step {
  padding: 30px 0;
  border-top: 4px solid var(--line);
}

.step > span {
  width: 46px;
  height: 42px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  border: 3px solid var(--line);
  box-shadow: 3px 3px 0 var(--line);
  font-family: "Jersey";
  font-size: 25px;
}

.step p {
  color: #555a66;
}

.final-cta {
  width: min(1160px, calc(100% - 36px));
  margin: 40px auto 100px;
  padding: clamp(34px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  background: var(--orange);
  border: 4px solid var(--line);
  box-shadow: 12px 12px 0 var(--line);
}

.final-cta .eyebrow {
  color: var(--navy-2);
}

.final-cta h2 {
  max-width: 700px;
  color: white;
}

.final-cta p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.button-light {
  min-width: 240px;
  color: var(--navy-2);
  background: var(--green);
}

footer {
  min-height: 180px;
  padding: 45px max(24px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  color: #d6dcea;
  background: var(--navy-2);
  border-top: 4px solid var(--line);
}

.footer-brand {
  padding: 8px 12px;
  background: var(--cream);
  border: 3px solid var(--line);
  box-shadow: 4px 4px 0 var(--orange);
}

.footer-brand .brand-logo {
  height: 126px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > div {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

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

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

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

  .hero {
    padding-top: 62px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-art img {
    width: min(800px, 110%);
  }

  .usp-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .phone-product {
    width: min(470px, 100%);
    margin: 36px auto 0;
  }

  .phone-frame {
    max-height: none;
  }

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

  .story-row,
  .story-row.reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-row.reverse .story-image {
    order: 0;
  }

  .story-image {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .economy-flow {
    grid-template-columns: 1fr;
  }

  .economy-flow li:has(.flow-arrow) {
    height: 28px;
    transform: rotate(90deg);
    text-align: center;
  }

  .final-cta,
  footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  footer {
    display: flex;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: calc(100% - 20px);
    height: 76px;
    margin-top: 10px;
  }

  .site-header .button-small {
    display: none;
  }

  .site-header .brand-logo {
    height: 64px;
  }

  .hero {
    width: calc(100% - 22px);
    min-height: auto;
    padding: 54px 0 42px;
  }

  h1 {
    font-size: 60px;
  }

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

  .hero-art {
    min-height: 340px;
  }

  .time-chip {
    font-size: 17px;
  }

  .chip-one {
    top: 9%;
  }

  .usp-section,
  .product-section,
  .story-section,
  .how-section {
    width: calc(100% - 28px);
    padding: 75px 0;
  }

  .story-row {
    margin: 70px 0 110px;
  }

  .economy-section {
    padding-block: 75px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 75px;
  }

  footer > div {
    flex-direction: column;
  }
}
