/* =====================================================
   ARKHON STUDIO V1.1
   ===================================================== */

:root {
  --green: #79d862;
  --green-dark: #55b941;
  --cream: #f7f6ef;
  --black: #151515;
  --muted: #73736d;
  --white: #ffffff;
  --purple: #d9c8ff;
  --yellow: #ffe58a;
  --pink: #ffc8dc;
  --border: #deded6;
}


/* =====================================================
   GLOBAL
   ===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Arial,
    Helvetica,
    sans-serif;

  background: var(--cream);
  color: var(--black);

  overflow-x: hidden;
}

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

button,
input,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--green);
  color: var(--black);
}


/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

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

  padding: 20px 5vw;

  background: rgba(247, 246, 239, 0.9);

  backdrop-filter: blur(12px);

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

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span,
.footer-logo span {
  color: var(--green-dark);
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  font-size: 13px;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--green-dark);
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
  min-height: 90vh;

  padding:
    80px 7vw
    100px;

  display: grid;

  grid-template-columns:
    1fr 0.8fr;

  align-items: center;

  gap: 60px;

  position: relative;

  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 25px;

  padding: 8px 12px;

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

  border-radius: 100px;

  transform: rotate(-2deg);
}

.hero h1 {
  font-size: clamp(70px, 11vw, 150px);

  line-height: 0.82;

  letter-spacing: -8px;

  margin: 0;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-description {
  max-width: 430px;

  margin:
    35px 0 30px;

  font-size: 20px;

  line-height: 1.45;

  color: #55554f;
}

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


/* =====================================================
   BUTTONS
   ===================================================== */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding:
    12px 20px;

  border-radius: 12px;

  font-size: 13px;

  font-weight: 800;

  cursor: pointer;

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

.button:hover {
  transform:
    translateY(-3px)
    rotate(-1deg);
}

.button-primary {
  background: var(--green);

  box-shadow:
    4px 4px 0 var(--black);
}

.button-primary:hover {
  background: var(--green-dark);

  box-shadow:
    6px 6px 0 var(--black);
}

.button-secondary {
  background: var(--white);

  border:
    1px solid var(--black);
}


/* =====================================================
   HERO ART
   ===================================================== */

.hero-art {
  min-height: 480px;

  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 330px;
  height: 330px;

  border-radius: 50%;

  background: var(--green);

  display: flex;

  align-items: center;
  justify-content: center;

  position: relative;

  transform: rotate(7deg);

  box-shadow:
    14px 14px 0 var(--black);

  animation:
    floatCircle 5s ease-in-out infinite;
}

.circle-text {
  font-size: 27px;
  font-weight: 900;

  line-height: 0.95;

  text-align: center;

  letter-spacing: -1px;
}

.circle-star {
  position: absolute;

  right: 25px;
  top: 20px;

  font-size: 35px;
}

.floating-card {
  position: absolute;

  padding: 13px 17px;

  background: var(--white);

  border:
    2px solid var(--black);

  border-radius: 13px;

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 13px;

  box-shadow:
    5px 5px 0 var(--black);

  z-index: 4;
}

.card-one {
  top: 40px;
  left: 5%;

  transform: rotate(-8deg);

  animation:
    floatingOne 4s ease-in-out infinite;
}

.card-two {
  right: 3%;
  top: 130px;

  transform: rotate(6deg);

  background: var(--purple);

  animation:
    floatingTwo 4.5s ease-in-out infinite;
}

.card-three {
  bottom: 45px;
  left: 12%;

  transform: rotate(4deg);

  background: var(--yellow);

  animation:
    floatingThree 5s ease-in-out infinite;
}

.scribble {
  position: absolute;

  font-size: 45px;
  font-weight: 900;
}

.scribble-one {
  top: 5%;
  right: 15%;
}

.scribble-two {
  bottom: 8%;
  right: 5%;
}

.scribble-three {
  bottom: 18%;
  left: 3%;

  font-size: 60px;
}

@keyframes floatCircle {
  0%,
  100% {
    transform:
      rotate(7deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(3deg)
      translateY(-12px);
  }
}

@keyframes floatingOne {
  0%,
  100% {
    transform:
      rotate(-8deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(-5deg)
      translateY(-10px);
  }
}

@keyframes floatingTwo {
  0%,
  100% {
    transform:
      rotate(6deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(3deg)
      translateY(12px);
  }
}

@keyframes floatingThree {
  0%,
  100% {
    transform:
      rotate(4deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(7deg)
      translateY(-8px);
  }
}


/* =====================================================
   SECTIONS
   ===================================================== */

.section {
  padding:
    110px 7vw;
}

.section-label {
  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.5px;

  color: #777770;
}


/* =====================================================
   INTRO
   ===================================================== */

.intro {
  background: var(--white);
}

.intro-grid {
  max-width: 1200px;

  margin:
    55px auto 0;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 100px;
}

.intro-title h2 {
  font-size: 20px;

  margin:
    0 0 20px;
}

.big-question {
  font-size:
    clamp(45px, 6vw, 75px);

  font-weight: 900;

  line-height: 0.95;

  letter-spacing: -4px;
}

.intro-copy {
  font-size: 18px;

  line-height: 1.6;

  max-width: 550px;
}

.intro-copy p {
  margin:
    0 0 22px;
}

blockquote {
  margin:
    35px 0;

  padding-left: 20px;

  border-left:
    5px solid var(--green);

  font-size:
    clamp(24px, 3vw, 38px);

  line-height: 1.15;
}

.idea-highlight {
  color: var(--green-dark);
}

.bold-copy {
  font-weight: 900;
}


/* =====================================================
   STUFF
   ===================================================== */

.section-heading {
  max-width: 1200px;

  margin:
    0 auto 55px;
}

.section-heading h2 {
  font-size:
    clamp(50px, 7vw, 90px);

  line-height: 0.9;

  letter-spacing: -5px;

  margin:
    25px 0 0;
}

.section-heading h2 span {
  color: var(--green-dark);
}

.project-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;

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

  gap: 22px;
}

.project-card {
  background: var(--white);

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

  border-radius: 20px;

  overflow: hidden;

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

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

  box-shadow:
    8px 8px 0 var(--black);
}

.project-visual {
  height: 280px;

  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.project-green .project-visual {
  background: var(--green);
}

.project-purple .project-visual {
  background: var(--purple);
}

.project-yellow .project-visual {
  background: var(--yellow);
}


/* mock app */

.mock-window {
  width: 72%;
  height: 65%;

  background: white;

  border:
    3px solid var(--black);

  border-radius: 12px;

  transform: rotate(-4deg);

  box-shadow:
    8px 8px 0 var(--black);
}

.mock-top {
  height: 30px;

  display: flex;

  align-items: center;

  gap: 5px;

  padding-left: 10px;

  border-bottom:
    2px solid var(--black);
}

.mock-top span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--black);
}

.mock-content {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  height: calc(100% - 30px);
}

.mock-big {
  font-size: 50px;
}

.mock-lines {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.mock-lines span {
  width: 55px;
  height: 7px;

  background: #ddd;

  border-radius: 10px;
}


/* experiment */

.experiment-shape {
  font-size: 100px;

  transform: rotate(-10deg);

  filter:
    drop-shadow(8px 8px 0 var(--black));
}

.floating-word {
  position: absolute;

  top: 30px;
  left: 30px;

  font-size: 30px;

  font-weight: 900;

  transform: rotate(-10deg);
}

.word-two {
  left: auto;
  right: 30px;

  top: auto;
  bottom: 30px;

  transform: rotate(8deg);
}


/* question */

.question-mark {
  font-size: 180px;

  font-weight: 900;

  line-height: 1;

  transform: rotate(-7deg);

  text-shadow:
    7px 7px 0 var(--black);
}

.visual-tag {
  position: absolute;

  right: 15px;
  top: 15px;

  padding:
    7px 9px;

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

  background: var(--white);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 1px;

  border-radius: 50px;
}

.project-info {
  padding: 22px;
}

.project-number {
  font-size: 10px;

  color: #888;

  font-weight: 800;
}

.project-info h3 {
  margin:
    10px 0 7px;

  font-size: 25px;

  letter-spacing: -1px;
}

.project-info p {
  margin:
    0 0 22px;

  color: #666;

  font-size: 14px;

  line-height: 1.4;
}

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

  font-weight: 900;
}

.project-link:hover {
  color: var(--green-dark);
}

.muted-link {
  color: #999;
}


/* =====================================================
   IDEAS
   ===================================================== */

.ideas {
  background: var(--black);

  color: white;

  overflow: hidden;
}

.ideas .section-label {
  color: #999;
}

.ideas-header {
  max-width: 1200px;

  margin:
    45px auto 70px;

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 40px;
}

.ideas-header h2 {
  font-size:
    clamp(48px, 7vw, 90px);

  line-height: 0.9;

  letter-spacing: -5px;

  margin: 0;
}

.ideas-header h2 span {
  color: var(--green);
}

.ideas-header p {
  max-width: 250px;

  color: #aaa;

  line-height: 1.5;
}

.idea-wall {
  max-width: 1100px;

  margin: auto;

  min-height: 500px;

  position: relative;
}

.idea-note {
  position: absolute;

  width: 230px;

  min-height: 180px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  color: var(--black);

  border-radius: 4px;

  box-shadow:
    8px 8px 0 rgba(255,255,255,0.1);

  transition:
    transform 0.25s ease;
}

.idea-note:hover {
  transform:
    scale(1.06)
    rotate(0deg) !important;

  z-index: 5;
}

.idea-note span {
  font-size: 10px;

  font-weight: 900;
}

.idea-note strong {
  font-size: 23px;

  line-height: 1;

  letter-spacing: -1px;
}

.idea-note small {
  font-size: 11px;
}

.note-one {
  background: var(--green);

  left: 5%;
  top: 40px;

  transform: rotate(-7deg);
}

.note-two {
  background: var(--yellow);

  left: 31%;
  top: 150px;

  transform: rotate(5deg);
}

.note-three {
  background: var(--purple);

  right: 20%;
  top: 10px;

  transform: rotate(7deg);
}

.note-four {
  background: var(--pink);

  right: 2%;
  bottom: 20px;

  transform: rotate(-5deg);
}


/* =====================================================
   TELL US
   ===================================================== */

.tell-us {
  background: var(--green);
}

.tell-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 100px;

  align-items: start;
}

.tell-intro h2 {
  font-size:
    clamp(60px, 8vw, 105px);

  line-height: 0.85;

  letter-spacing: -6px;

  margin:
    30px 0;
}

.tell-intro h2 span {
  color: white;
}

.tell-intro p {
  margin:
    7px 0;

  font-size: 18px;
}

.tell-intro > strong {
  display: block;

  margin-top: 25px;

  font-size: 20px;
}

.idea-form-wrapper {
  background: var(--white);

  padding: 35px;

  border:
    2px solid var(--black);

  border-radius: 18px;

  box-shadow:
    10px 10px 0 var(--black);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  margin-bottom: 7px;

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 1px;
}

input,
textarea {
  width: 100%;

  padding:
    14px;

  border:
    1px solid #ccc;

  border-radius: 8px;

  outline: none;

  font-size: 14px;

  background: #fafafa;
}

input:focus,
textarea:focus {
  border-color: var(--green-dark);

  box-shadow:
    0 0 0 3px
    rgba(121,216,98,0.2);
}

textarea {
  resize: vertical;
}

.submit-button {
  border: none;

  width: 100%;
}

.form-message {
  margin-top: 15px;

  font-size: 13px;

  font-weight: 700;
}


/* =====================================================
   PHILOSOPHY
   ===================================================== */

.philosophy {
  min-height: 600px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  position: relative;
}

.philosophy-mark {
  font-size: 60px;

  color: var(--green-dark);

  margin-bottom: 20px;
}

.philosophy h2 {
  font-size:
    clamp(55px, 8vw, 110px);

  line-height: 0.85;

  letter-spacing: -6px;

  margin:
    35px 0;
}

.philosophy h2 span {
  color: var(--green-dark);
}

.philosophy-doodle {
  font-size: 30px;

  letter-spacing: 20px;
}


/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  padding:
    30px 7vw;

  background: var(--black);

  color: white;

  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  align-items: center;
}

.footer-logo {
  font-size: 18px;

  font-weight: 900;
}

.site-footer p {
  text-align: center;

  color: #aaa;

  font-size: 12px;
}

.copyright {
  text-align: right;

  color: #777;

  font-size: 10px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 800px) {

  .site-header {
    padding:
      16px 20px;
  }

  .site-header nav {
    gap: 15px;
  }

  .site-header nav a {
    font-size: 11px;
  }

  .hero {
    min-height: auto;

    padding:
      65px 20px 80px;

    display: flex;

    flex-direction: column;

    gap: 20px;
  }

  .hero h1 {
    font-size:
      clamp(70px, 22vw, 120px);

    letter-spacing: -6px;
  }

  .hero-description {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .hero-art {
    width: 100%;

    min-height: 400px;
  }

  .hero-circle {
    width: 270px;
    height: 270px;
  }

  .circle-text {
    font-size: 23px;
  }

  .floating-card {
    font-size: 11px;
  }

  .section {
    padding:
      80px 20px;
  }

  .intro-grid,
  .tell-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .big-question {
    font-size: 50px;

    letter-spacing: -3px;
  }

  .intro-copy {
    font-size: 16px;
  }

  .section-heading h2,
  .ideas-header h2 {
    font-size: 55px;

    letter-spacing: -4px;
  }

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

  .project-visual {
    height: 260px;
  }

  .ideas-header {
    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 40px;
  }

  .idea-wall {
    min-height: 760px;
  }

  .idea-note {
    width: 190px;

    min-height: 160px;
  }

  .note-one {
    left: 0;
    top: 20px;
  }

  .note-two {
    left: auto;
    right: 0;
    top: 180px;
  }

  .note-three {
    left: 5%;
    right: auto;
    top: 370px;
  }

  .note-four {
    right: 0;
    bottom: 20px;
  }

  .tell-intro h2 {
    font-size: 70px;

    letter-spacing: -5px;
  }

  .idea-form-wrapper {
    padding: 22px;

    box-shadow:
      6px 6px 0 var(--black);
  }

  .philosophy {
    min-height: 450px;
  }

  .philosophy h2 {
    font-size: 60px;

    letter-spacing: -4px;
  }

  .site-footer {
    grid-template-columns: 1fr;

    gap: 12px;

    text-align: center;
  }

  .site-footer p,
  .copyright {
    text-align: center;
  }

}


/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

  .app-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.app-card-link:hover {
  color: inherit;
}

.app-card-link:hover .app-card {
  transform: translateY(-6px);
}


}