

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #f6f6f3;
  --text: #171717;
  --muted: #707070;
  --line: #deded8;
  --accent: #635bff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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


/* NAV */

.nav {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  padding: 24px 5vw;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 100;

  background: rgba(246, 246, 243, 0.8);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.nav nav {
  display: flex;
  gap: 30px;
}

.nav nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

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


/* HERO */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 140px 10vw 100px;

  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 25px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(70px, 11vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.hero h1 span,
h2 span {
  color: var(--accent);
}

.hero h1 span
{
  color: var(--text);
}
.hero-text {
  max-width: 560px;
  font-size: 20px;
  color: var(--muted);
  margin: 45px 0 35px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  padding: 13px 20px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--text);
  color: white;
}

.secondary {
  border: 1px solid var(--line);
}


/* ORB */

.hero-orb {
  position: absolute;
  right: 5vw;
  top: 50%;

  transform: translateY(-50%);
}

.orb {
  width: min(35vw, 480px);
  height: min(35vw, 480px);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #ffffff 0%,
      #d9d5ff 20%,
      #8f86ff 48%,
      #635bff 70%,
      #443bc4 100%
    );

  filter: blur(1px);

  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}


/* SECTIONS */

.section {
  max-width: 1300px;
  margin: auto;

  padding: 150px 10vw;

  display: grid;
  grid-template-columns: 100px 1fr;

  border-top: 1px solid var(--line);
}

.section-number {
  font-family: "Space Grotesk", sans-serif;
  color: var(--muted);
  font-size: 14px;
}

.section-content {
  max-width: 850px;
}

.section h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;

  margin-bottom: 50px;
}

.section-content > p:not(.eyebrow) {
  max-width: 700px;

  font-size: 18px;
  color: #505050;

  margin-bottom: 25px;
}


/* PROJECTS */

.projects-section {
  display: grid;
}

.project {
  padding: 45px 0;

  border-top: 1px solid var(--line);
}

.project:last-child {
  border-bottom: 1px solid var(--line);
}

.project-meta {
  display: flex;
  justify-content: space-between;

  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;

  color: var(--muted);

  margin-bottom: 20px;
}

.project h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 38px;
  letter-spacing: -0.04em;

  margin-bottom: 15px;
}

.project p {
  max-width: 650px;

  color: var(--muted);
  font-size: 17px;

  margin-bottom: 25px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 25px;
}

.tags span {
  padding: 6px 11px;

  border: 1px solid var(--line);
  border-radius: 999px;

  font-size: 12px;
}

.project-link {
  font-weight: 600;
  font-size: 14px;

  color: var(--accent);
}


/* FACTS */

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  margin-top: 60px;

  border-top: 1px solid var(--line);
}

.fact {
  padding: 25px 0;

  border-bottom: 1px solid var(--line);

  display: flex;
  gap: 20px;
}

.fact strong {
  color: var(--accent);
}

.fact span {
  color: var(--muted);
}


/* STATEMENT */

.statement {
  padding: 180px 10vw;

  background: var(--text);
  color: white;
}

.statement h2 {
  max-width: 900px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(50px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.06em;

  margin-bottom: 45px;
}

.statement h2 em {
  color: #9b94ff;
  font-style: normal;
}

.statement > p:last-child {
  max-width: 600px;

  color: #a8a8a8;
  font-size: 18px;
}


/* CONTACT */

.contact {
  padding: 180px 10vw;

  max-width: 1300px;
  margin: auto;
}

.contact h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.9;

  letter-spacing: -0.07em;

  margin-bottom: 60px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-links a {
  border-bottom: 1px solid var(--text);

  padding-bottom: 5px;

  font-weight: 600;
}
.photo-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.photo-meghan,
.photo-trinity {
  width: 200px;
  height: 190px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
  margin-top: 0;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--line);

  padding: 25px 5vw;

  display: flex;
  justify-content: space-between;

  color: var(--muted);

  font-size: 10px;
  letter-spacing: 0.1em;
}


/* MOBILE */

@media (max-width: 800px) {

  .nav nav {
    display: none;
  }

  .hero {
    padding: 140px 7vw 100px;
  }

  .hero-orb {
    opacity: 0.25;
    right: -100px;
  }

  .section {
    padding: 100px 7vw;

    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-number {
    margin-bottom: 10px;
  }

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

  .statement {
    padding: 120px 7vw;
  }

  .contact {
    padding: 120px 7vw;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }

}

/* SCRIPT JS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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


:root {
  --stripe-purple: #635bff;
  --stripe-purple-dark: #3c35a5;
  --stripe-blue: #00a4ff;
  --stripe-orange: #ff8f66;
  --stripe-pink: #ff80ab;

  --ink: #161616;
  --paper: #f7f7f4;
}



.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--stripe-purple);
}

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

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #777;
}

.nav-status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #34c759;

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}



.creative-hero {
  min-height: 100vh;

  padding: 130px 6vw 50px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;

  overflow: hidden;
}

.hero-topline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;

  color: #777;
}

.hero-topline span:nth-child(2) {
  text-align: center;
}

.hero-topline span:nth-child(3) {
  text-align: right;
}

.hero-title {
  position: relative;
  z-index: 5;

  margin-top: auto;
  margin-bottom: auto;
}

.hero-intro {
  max-width: 420px;

  font-size: 16px;

  color: #777;

  margin-bottom: 20px;
}

.hero-intro span {
  color: var(--stripe-purple);
}

.hero-title h1 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(70px, 15vw, 220px);

  line-height: 0.78;

  letter-spacing: -0.085em;

  margin-left: -0.07em;
}

.hero-accent {
  display: block;

  color: var(--text);

  margin-left: 12vw;
}




.hero-bottom {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1fr 1fr 80px;

  align-items: end;
}

.hero-description {
  max-width: 340px;
}

.hero-description p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.formal-letter-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 17px;
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.formal-letter-button span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.formal-letter-button:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.formal-letter-button:hover span {
  transform: translate(3px, -3px);
}

.hero-scroll {
  justify-self: center;

  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 700;

  color: #777;
}

.scroll-line {
  width: 50px;
  height: 1px;

  background: #aaa;
}

.hero-number {
  justify-self: end;

  font-family: "Space Grotesk", sans-serif;

  font-size: 36px;

  color: var(--stripe-purple);
}



.shape {
  position: absolute;

  z-index: 1;

  pointer-events: none;

  filter: blur(0px);
}

.shape-purple {
  width: 320px;
  height: 320px;

  right: 4%;
  top: 18%;

  border-radius: 60% 40% 55% 45%;

  background: var(--stripe-purple);

  transform: rotate(-22deg);

  opacity: 0.92;

  animation: shapeFloat 8s ease-in-out infinite;
}

.shape-orange {
  width: 130px;
  height: 130px;

  right: 27%;
  top: 43%;

  border-radius: 50% 50% 40% 60%;

  background: var(--stripe-orange);

  transform: rotate(25deg);

  animation: shapeFloatTwo 6s ease-in-out infinite;
}

.shape-blue {
  width: 180px;
  height: 100px;

  right: 8%;
  bottom: 10%;

  border-radius: 70% 30% 50% 50%;

  background: var(--stripe-blue);

  transform: rotate(-15deg);

  animation: shapeFloat 7s ease-in-out infinite reverse;
}

@keyframes shapeFloat {

  0%, 100% {
    transform:
      rotate(-22deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(-16deg)
      translateY(-20px);
  }

}

@keyframes shapeFloatTwo {

  0%, 100% {
    transform:
      rotate(25deg)
      translate(0, 0);
  }

  50% {
    transform:
      rotate(35deg)
      translate(-15px, -12px);
  }

}



.editorial-section,
.work-section,
.about-section {
  max-width: none;

  padding-left: 6vw;
  padding-right: 6vw;
}

.section-label {
  display: flex;
  flex-direction: column;

  gap: 8px;

  font-size: 10px;

  letter-spacing: 0.12em;

  font-weight: 700;

  color: #777;
}

.section-label span:first-child {
  color: var(--stripe-purple);

  font-family: "Space Grotesk", sans-serif;

  font-size: 18px;
}

.section-main {
  max-width: 1000px;
}



.large-kicker {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(48px, 6vw, 90px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  margin-bottom: 70px;
}

.large-kicker span {
  color: var(--stripe-purple);
}



.two-column-copy {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  max-width: 900px;

  margin-bottom: 150px;
}

.two-column-copy p {
  color: #666;

  font-size: 17px;

  margin-bottom: 22px;
}

.stripe-statement {
  padding: 80px 0;

  border-top: 1px solid var(--line);
}

.statement-small {
  display: block;

  font-size: 10px;

  letter-spacing: 0.14em;

  font-weight: 700;

  color: #777;

  margin-bottom: 30px;
}

.stripe-statement h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(60px, 9vw, 130px);

  line-height: 0.88;

  letter-spacing: -0.075em;
}

.stripe-statement h2 span {
  display: block;

  color: var(--stripe-purple);
}




.work-intro {
  display: grid;

  grid-template-columns: 1fr 300px;

  gap: 100px;

  align-items: end;

  margin-bottom: 80px;
}

.work-intro > p:last-child {
  color: #777;

  font-size: 15px;
}



.project-card {
  position: relative;

  min-height: 560px;

  margin-bottom: 35px;

  padding: 35px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  transition:
    transform 0.5s cubic-bezier(.2,.8,.2,1),
    border-radius 0.5s ease;
}

.project-card:hover {
  transform: translateY(-8px);

  border-radius: 25px;
}

.project-purple {
  background:
    linear-gradient(
      120deg,
      #635bff,
      #7169ff 55%,
      #8b84ff
    );

  color: white;
}

.project-orange {
  background:
    linear-gradient(
      120deg,
      #ff7a59,
      #ff9675
    );

  color: white;
}

.project-blue {
  background:
    linear-gradient(
      120deg,
      #007cff,
      #00a4ff
    );

  color: white;
}


.project-top {
  display: flex;

  justify-content: space-between;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.12em;
}


.project-content {
  max-width: 700px;
}

.project-title {
  display: flex;

  justify-content: space-between;

  align-items: end;

  margin-bottom: 20px;
}

.project-title h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(60px, 9vw, 120px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.project-arrow {
  font-size: 50px;

  line-height: 1;

  opacity: 0.7;
}

.project-content > p {
  max-width: 600px;

  font-size: 18px;

  line-height: 1.45;

  opacity: 0.85;

  margin-bottom: 30px;
}

.project-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 30px;
}

.project-tags span {
  padding: 6px 10px;

  border: 1px solid rgba(255,255,255,0.35);

  border-radius: 100px;

  font-size: 11px;
}

.project-link {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.1em;

  border-bottom: 1px solid rgba(255,255,255,0.6);

  padding-bottom: 5px;
}




.skills-section {
  padding: 150px 6vw;

  display: grid;

  grid-template-columns: 100px 1fr;

  border-top: 1px solid var(--line);
}

.skills-content {
  max-width: 1100px;
}

.skill-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);
}

.skill {
  padding: 40px 30px 40px 0;

  border-right: 1px solid var(--line);
}

.skill:not(:first-child) {
  padding-left: 30px;
}

.skill:last-child {
  border-right: none;
}

.skill-number {
  color: var(--stripe-purple);

  font-size: 12px;

  font-weight: 700;
}

.skill h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 35px;

  letter-spacing: -0.04em;

  margin: 35px 0 15px;
}

.skill p {
  color: #777;

  font-size: 14px;

  margin-bottom: 30px;
}

.skill-list {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;
}

.skill-list span {
  padding: 5px 8px;

  border: 1px solid var(--line);

  border-radius: 100px;

  font-size: 10px;
}



.about-headline {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(50px, 6vw, 85px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  max-width: 1000px;

  margin-bottom: 100px;
}

.about-headline span {
  display: block;

  color: var(--stripe-purple);
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  max-width: 900px;
}

.about-grid p {
  color: #666;

  font-size: 17px;

  margin-bottom: 25px;
}



.creative-statement {
  padding: 180px 6vw;

  display: grid;

  grid-template-columns: 100px 1fr;

  background:
    linear-gradient(
      130deg,
      #181818,
      #25202f
    );
}

.statement-number {
  color: #9b94ff;

  font-family: "Space Grotesk", sans-serif;

  font-size: 18px;
}

.creative-statement h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(65px, 10vw, 150px);

  line-height: 0.82;

  letter-spacing: -0.075em;

  max-width: 1000px;

  margin-bottom: 50px;
}

.creative-statement h2 span {
  color: #9b94ff;
}

.statement-copy {
  color: #999;

  font-size: 20px;

  line-height: 1.5;
}


.creative-contact {
  max-width: none;

  padding: 170px 6vw;
}

.creative-contact h2 {
  max-width: 1100px;

  font-size: clamp(65px, 10vw, 150px);

  line-height: 0.82;

  letter-spacing: -0.075em;
}

.creative-contact h2 span {
  display: block;

  color: var(--stripe-purple);
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  max-width: 900px;
}

.contact-grid > div:first-child p {
  color: #777;

  font-size: 17px;
}

.contact-links {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 15px;
}

.contact-links a {
  font-family: "Space Grotesk", sans-serif;

  font-size: 20px;

  letter-spacing: -0.02em;

  border-bottom: 1px solid var(--ink);

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-links a:hover {
  color: var(--stripe-purple);

  border-color: var(--stripe-purple);
}




footer {
  padding: 25px 6vw;

  font-size: 9px;

  letter-spacing: 0.12em;
}

@media (max-width: 800px) {

  .nav-status {
    display: none;
  }

  .creative-hero {
    padding: 120px 7vw 40px;
  }

  .hero-topline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-topline span:nth-child(3) {
    display: none;
  }

  .hero-title h1 {
    font-size: 20vw;
  }

  .hero-accent {
    margin-left: 5vw;
  }

  .hero-bottom {
    grid-template-columns: 1fr 50px;
  }

  .hero-scroll {
    display: none;
  }

  .shape-purple {
    width: 220px;
    height: 220px;

    right: -60px;
    top: 28%;
  }

  .shape-orange {
    width: 80px;
    height: 80px;

    right: 20%;
    top: 45%;
  }

  .shape-blue {
    width: 120px;
    height: 70px;

    right: -20px;
  }

  .two-column-copy,
  .work-intro,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

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

  .skill {
    border-right: none;

    border-bottom: 1px solid var(--line);

    padding: 40px 0 !important;
  }

  .skill:last-child {
    border-bottom: none;
  }

  .skills-section,
  .creative-statement {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .project-card {
    min-height: 500px;

    padding: 25px;
  }

  .project-title h3 {
    font-size: 65px;
  }

}

