/* Replace this with your brand's primary color */
:root {
  --ink: #111111;
  --paper: #f4f4f1;
  --soft-white: #fbfbf9;
  --line: #d2d2ce;
  --muted: #73736f;
  --gray: #e4e4e0;
  --display: "Space Grotesk", sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  overflow: hidden;
}
.site-header,
main > *,
.site-footer {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 5vw, 76px);
  padding-right: clamp(24px, 5vw, 76px);
}
.site-header {
  align-items: center;
  display: flex;
  height: 104px;
  justify-content: space-between;
}
.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.4px;
}
.wordmark span {
  font-weight: 400;
}
.wordmark i,
.status-dot {
  background: var(--ink);
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-left: 5px;
  width: 6px;
}
.main-nav {
  display: flex;
  gap: clamp(18px, 3vw, 45px);
  margin-left: auto;
  margin-right: clamp(18px, 4vw, 60px);
}
.main-nav a,
.footer-bottom,
.eyebrow,
.browser-bar,
.section-marker,
.project-index {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
}
.main-nav a::after {
  background: var(--ink);
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  width: 100%;
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.button {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding: 15px 17px;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button-dark {
  background: var(--ink);
  color: var(--soft-white);
}
.hero {
  align-items: center;
  display: flex;
  gap: clamp(40px, 8vw, 130px);
  min-height: 650px;
  padding-bottom: 80px;
  padding-top: 78px;
}
.hero-copy {
  flex: 0 0 39%;
  padding-bottom: 32px;
}
.eyebrow {
  align-items: center;
  display: flex;
  gap: 9px;
  margin: 0;
}
.status-dot {
  height: 5px;
  margin-left: 0;
  width: 5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.91;
}
h1 {
  font-size: clamp(68px, 8.6vw, 125px);
  margin: 42px 0 34px;
}
h1 em,
h2 em {
  font-style: normal;
  font-weight: 400;
}
.hero-intro {
  color: #555550;
  font-size: 15px;
  line-height: 1.55;
  max-width: 330px;
}
.text-link {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  gap: 35px;
  margin-top: 35px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.text-link span {
  font-size: 16px;
  line-height: 8px;
}
.browser-frame {
  background: #252525;
  box-shadow: 22px 25px 0 #dcdcd8;
  flex: 1;
  min-width: 0;
  padding: 11px;
}
.browser-bar {
  align-items: center;
  color: #aaa;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  padding: 5px 6px 11px;
}
.browser-dots {
  display: flex;
  gap: 4px;
}
.browser-dots i {
  background: #555;
  border-radius: 50%;
  display: block;
  height: 5px;
  width: 5px;
}
.hero-screen {
  aspect-ratio: 1.23;
  overflow: hidden;
  position: relative;
}
.hero-screen img,
.project-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.screen-label {
  bottom: 15px;
  color: #fff;
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  justify-content: space-between;
  left: 17px;
  position: absolute;
  right: 17px;
  text-transform: uppercase;
}
.section-marker {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 35px;
  padding-top: 15px;
}
.section-marker span {
  color: var(--muted);
}
.section-marker b {
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  margin-left: 12px;
}
/* Adjust grid columns here if adding more showcase items */
.showcase-grid {
  display: grid;
  gap: 72px 24px;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 155px;
  padding-top: 10px;
}
.project {
  min-width: 0;
}
.project-tall {
  grid-column: 1 / span 4;
}
.project-wide {
  grid-column: 5 / span 6;
}
.project-medium {
  grid-column: 3 / span 5;
}
.project-small {
  grid-column: 9 / span 4;
}
.project-last {
  grid-column: 8 / span 5;
}
.project-offset {
  margin-top: 100px;
}
.project-offset-small {
  margin-top: -26px;
}
.project-image {
  overflow: hidden;
  position: relative;
}
.project-tall .project-image {
  aspect-ratio: 0.77;
}
.project-wide .project-image {
  aspect-ratio: 1.55;
}
.project-medium .project-image {
  aspect-ratio: 1.1;
}
.project-small .project-image {
  aspect-ratio: 1.3;
}
.project-index {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  left: 0;
  padding: 8px;
  position: absolute;
  top: 0;
}
.project-meta {
  align-items: baseline;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding-top: 14px;
}
.project-meta h2 {
  font-size: 16px;
  letter-spacing: -0.04em;
  margin: 0;
}
.project-meta p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
  max-width: 180px;
  text-align: right;
}
.process-section {
  align-items: start;
  background: var(--ink);
  color: var(--soft-white);
  display: flex;
  gap: 10%;
  justify-content: space-between;
  padding-bottom: 135px;
  padding-top: 125px;
}
.process-section .eyebrow,
.final-cta .eyebrow {
  color: #92928d;
}
.section-heading {
  flex: 0 0 35%;
}
.section-heading h2,
.values-intro h2,
.testimonial-heading h2 {
  font-size: clamp(54px, 6vw, 84px);
  margin: 52px 0 0;
}
.process-list {
  flex: 1;
  padding-top: 8px;
}
.process-step {
  align-items: center;
  border-top: 1px solid #40403e;
  display: flex;
  gap: 32px;
  min-height: 132px;
}
.process-step:last-child {
  border-bottom: 1px solid #40403e;
}
.step-number {
  color: #888884;
  font-family: var(--mono);
  font-size: 11px;
  align-self: flex-start;
  padding-top: 30px;
}
.process-step h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.process-step p {
  color: #90908c;
  font-size: 12px;
  margin: 0;
}
.step-arrow {
  font-size: 19px;
  margin-left: auto;
}
.values-section {
  display: flex;
  gap: 10%;
  padding-bottom: 150px;
  padding-top: 145px;
}
.values-intro {
  flex: 0 0 35%;
}
.values-list {
  border-top: 1px solid var(--line);
  flex: 1;
}
.values-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 35px 1fr 1fr;
  padding: 31px 0 35px;
}
.values-list article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}
.values-list h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}
.values-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  max-width: 220px;
}
.testimonial-section {
  border-top: 1px solid var(--line);
  padding-bottom: 150px;
  padding-top: 120px;
}
.testimonial-heading {
  display: flex;
  justify-content: space-between;
}
.testimonial-heading h2 {
  font-size: clamp(48px, 5vw, 70px);
  margin: 0;
  width: 55%;
}
.testimonial-track {
  align-items: start;
  display: flex;
  gap: 24px;
  margin-left: 24%;
  margin-top: 100px;
}
.quote {
  background: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 260px;
  padding: 27px;
  width: 36%;
}
.quote-main {
  background: var(--ink);
  color: var(--soft-white);
  min-height: 350px;
  width: 45%;
}
.quote blockquote {
  font-size: clamp(19px, 2.2vw, 28px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin: 0;
}
.quote-side blockquote {
  font-size: 17px;
}
.quote figcaption {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 10px;
  text-transform: uppercase;
}
.quote figcaption small {
  color: #8b8b87;
  display: block;
  font-size: 8px;
  margin-top: 4px;
  text-transform: none;
}
.avatar {
  align-items: center;
  background: #444;
  border-radius: 50%;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.avatar-light {
  background: #bdbdb9;
}
.final-cta {
  align-items: end;
  background: var(--ink);
  color: var(--soft-white);
  display: flex;
  justify-content: space-between;
  padding-bottom: 120px;
  padding-top: 120px;
}
.final-cta h2 {
  font-size: clamp(62px, 8vw, 112px);
  margin: 45px 0 0;
}
.cta-action {
  max-width: 245px;
}
.cta-action p {
  color: #a4a4a0;
  font-size: 13px;
  line-height: 1.45;
}
.button-light {
  background: var(--soft-white);
  color: var(--ink);
  margin-top: 12px;
  min-width: 190px;
}
.site-footer {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 46px;
  padding-top: 55px;
}
.site-footer > p {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: end;
}
.social-links a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  height: 31px;
  justify-content: center;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s;
  width: 31px;
}
.social-links a:hover {
  background: var(--ink);
  color: var(--soft-white);
}
.footer-bottom {
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.footer-bottom a {
  color: var(--ink);
}

@media (max-width: 800px) {
  .site-header {
    height: 80px;
  }
  .main-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .hero {
    align-items: stretch;
    flex-direction: column;
    gap: 55px;
    min-height: auto;
    padding-bottom: 100px;
    padding-top: 65px;
  }
  .hero-copy {
    flex-basis: auto;
  }
  h1 {
    font-size: clamp(62px, 16vw, 100px);
    margin-top: 30px;
  }
  .browser-frame {
    box-shadow: 12px 14px 0 #dcdcd8;
  }
  .showcase-grid {
    gap: 60px 16px;
    padding-bottom: 105px;
  }
  .project-tall,
  .project-wide,
  .project-medium,
  .project-small,
  .project-last {
    grid-column: span 6;
  }
  .project-offset,
  .project-offset-small {
    margin-top: 40px;
  }
  .project-last {
    margin-left: 50%;
  }
  .process-section,
  .values-section {
    flex-direction: column;
    gap: 65px;
    padding-bottom: 95px;
    padding-top: 90px;
  }
  .section-heading,
  .values-intro {
    flex-basis: auto;
  }
  .testimonial-section {
    padding-bottom: 100px;
    padding-top: 90px;
  }
  .testimonial-heading {
    display: block;
  }
  .testimonial-heading h2 {
    margin-top: 40px;
    width: 100%;
  }
  .testimonial-track {
    margin-left: 0;
    margin-top: 60px;
    overflow-x: auto;
    padding-bottom: 15px;
  }
  .quote,
  .quote-main {
    flex: 0 0 75%;
    min-height: 270px;
    width: auto;
  }
  .final-cta {
    align-items: start;
    flex-direction: column;
    gap: 65px;
    padding-bottom: 90px;
    padding-top: 90px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .footer-right {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 480px) {
  .site-header,
  main > *,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-cta {
    font-size: 9px;
    gap: 10px;
    padding: 12px;
  }
  .showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }
  .project-offset,
  .project-offset-small,
  .project-last {
    margin-left: 0;
    margin-top: 0;
  }
  .project:nth-child(even) {
    padding-left: 15%;
  }
  .project-meta {
    display: block;
  }
  .project-meta p {
    margin-top: 7px;
    max-width: 100%;
    text-align: left;
  }
  .values-list article {
    display: block;
  }
  .values-list h3 {
    margin: 12px 0;
  }
  .values-list p {
    max-width: 275px;
  }
  .testimonial-track {
    margin-right: -20px;
  }
  .quote,
  .quote-main {
    flex-basis: 84%;
  }
  .site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-footer > p {
    flex-basis: 100%;
    order: 3;
  }
  .footer-right {
    gap: 35px;
  }
  .footer-bottom {
    gap: 18px;
  }
}
