:root {
  --ink: #050506;
  --ink-2: #101116;
  --ink-3: #171923;
  --paper: #f4f0e8;
  --paper-2: #fffaf1;
  --text: #fffaf1;
  --dark-text: #141418;
  --muted: #b7b7c2;
  --dark-muted: #5f6069;
  --red: #ff2d55;
  --green: #49f17a;
  --cyan: #21d7ff;
  --gold: #f7ca43;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(20, 20, 24, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 52%, var(--paper) 52%, var(--paper) 100%);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
}

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

img {
  max-width: 100%;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(var(--max), calc(100vw - 32px));
  min-height: 58px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 6, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  padding: 9px 12px;
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 950;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.nav-links a {
  color: rgba(255, 250, 241, 0.76);
}

.nav-links a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  background:
    linear-gradient(122deg, rgba(255, 45, 85, 0) 0 56%, rgba(255, 45, 85, 0.2) 56% 57%, transparent 57%),
    linear-gradient(302deg, rgba(73, 241, 122, 0) 0 70%, rgba(73, 241, 122, 0.16) 70% 71%, transparent 71%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.76) 48%, rgba(5, 5, 6, 0.34) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(670px, 100%);
}

.kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker.dark {
  color: #0d8a46;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Impact, "Avenir Next Condensed", Haettenschweiler, sans-serif;
  font-size: clamp(86px, 18vw, 210px);
  line-height: 0.78;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: Impact, "Avenir Next Condensed", Haettenschweiler, sans-serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.12;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.34;
  font-weight: 760;
}

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

.button {
  min-height: 54px;
  padding: 0 22px;
}

.button-primary {
  background: var(--red);
  box-shadow: 0 18px 42px rgba(255, 45, 85, 0.34);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shot {
  position: absolute;
  width: min(28vw, 360px);
  min-width: 220px;
  border: 8px solid #fffaf1;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.52);
}

.hero-shot-main {
  right: max(34px, calc((100vw - var(--max)) / 2));
  bottom: -170px;
  transform: rotate(7deg);
}

.hero-shot-side {
  right: max(310px, calc((100vw - var(--max)) / 2 + 260px));
  bottom: -230px;
  transform: rotate(-7deg);
  opacity: 0.82;
}

.split-section,
.process-section,
.feature-wall,
.screenshots-section,
.resource-strip,
.page-hero,
.content-section {
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
}

.light-section {
  color: var(--dark-text);
  background:
    repeating-linear-gradient(0deg, rgba(20, 20, 24, 0.04) 0 1px, transparent 1px 42px),
    var(--paper);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
}

.large-copy {
  margin: 0;
  color: var(--dark-muted);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.55;
  font-weight: 650;
}

.process-section,
.screenshots-section,
.page-hero {
  background:
    linear-gradient(128deg, transparent 0 62%, rgba(33, 215, 255, 0.12) 62% 63%, transparent 63%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.process-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-card,
.feature-grid article,
.detail-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  padding: 26px;
}

.process-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-family: Impact, "Avenir Next Condensed", Haettenschweiler, sans-serif;
  font-size: 64px;
  line-height: 0.9;
}

.feature-grid article {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.64);
}

.feature-grid p,
.detail-card p,
.support-card p {
  margin-bottom: 0;
}

.feature-grid article:nth-child(2n) {
  border-color: rgba(255, 45, 85, 0.28);
}

.feature-grid article:nth-child(3n) {
  border-color: rgba(13, 138, 70, 0.28);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.shot-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #111217;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.shot-grid img {
  display: block;
  width: 100%;
}

.resource-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.resource-strip a {
  display: grid;
  min-height: 140px;
  align-content: space-between;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--paper-2);
  padding: 20px;
}

.resource-strip span {
  color: #0d8a46;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-strip strong {
  font-size: 24px;
  line-height: 1.05;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2)) 44px;
  color: rgba(255, 250, 241, 0.68);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 950;
}

.site-footer img {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.site-footer a,
.inline-link {
  color: var(--green);
  font-weight: 850;
}

.page-hero {
  min-height: 54svh;
  display: grid;
  align-content: end;
  padding-top: 150px;
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(62px, 11vw, 148px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
}

.content-section {
  color: var(--dark-text);
  background: var(--paper);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.detail-card,
.support-card {
  color: var(--dark-text);
  border-color: var(--dark-line);
  background: var(--paper-2);
}

.detail-card h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.detail-card p,
.support-card p,
.detail-card li {
  color: var(--dark-muted);
}

.detail-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  line-height: 1.72;
}

.support-card {
  border-left: 6px solid var(--red);
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.email-link {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  border: 1px solid rgba(255, 45, 85, 0.28);
  background: var(--red);
  color: var(--text);
  padding: 0 18px;
  font-weight: 950;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 90svh;
    align-items: end;
  }

  .hero-shot-main {
    right: -74px;
    bottom: 210px;
    width: min(58vw, 330px);
    opacity: 0.72;
  }

  .hero-shot-side {
    display: none;
  }

  .split-section,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .feature-grid,
  .resource-strip {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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