:root {
  --ink: #171520;
  --paper: #f3f0e8;
  --white: #fffdf7;
  --accent: #7457ff;
  --accent-light: #c9bdff;
  --lime: #d5f26f;
  --line: rgba(23, 21, 32, 0.18);
  --font-manrope: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
}

.brand-name {
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.text-link,
.service-card a,
footer a {
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover,
.service-card a:hover,
footer a:hover {
  opacity: 0.62;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: min(900px, 100svh);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(22px, 6.8vw, 130px) 110px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--accent);
  background-size: 80px 80px;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 22%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.14);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.orbit-one {
  top: -29vw;
  right: -12vw;
  width: 72vw;
  height: 72vw;
}

.orbit-two {
  right: 8vw;
  bottom: -35vw;
  width: 60vw;
  height: 60vw;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(213, 242, 111, 0.15);
}

.hero h1 {
  max-width: 900px;
  margin: 44px 0 32px;
  font-size: clamp(72px, 9.4vw, 168px);
  font-weight: 750;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.hero-intro {
  max-width: 570px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #272331;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-side {
  align-self: end;
  justify-self: end;
  width: 220px;
  padding-bottom: 50px;
}

.side-label {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stat {
  margin-top: 18px;
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.hero-stat span {
  max-width: 150px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.hero-stamp {
  display: grid;
  width: 96px;
  height: 96px;
  margin-top: 35px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
  transform: rotate(7deg);
}

.hero-stamp span,
.hero-stamp i {
  display: block;
  font-style: normal;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-foot i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.section-pad {
  padding: 130px clamp(22px, 6.8vw, 130px);
}

.statement {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 60px;
  border-bottom: 1px solid var(--line);
}

.statement h2,
.section-heading h2,
.founder-copy h2,
.process-intro h2,
.contact h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 95px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 em {
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 400;
}

.statement > div > p {
  max-width: 680px;
  margin: 46px 0 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.services {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.45fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
}

.section-index.light {
  color: rgba(255, 255, 255, 0.56);
}

.section-heading h2 {
  font-size: clamp(45px, 5vw, 78px);
}

.section-heading > p:last-child,
.process-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    color 250ms ease,
    background 250ms ease;
}

.service-card:hover {
  color: var(--ink);
  background: var(--lime);
}

.card-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}

.service-tag {
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 100px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: clamp(31px, 3vw, 50px);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.service-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.65;
}

.service-card:hover p {
  color: rgba(23, 21, 32, 0.75);
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
}

.service-card:hover a {
  border-color: rgba(23, 21, 32, 0.25);
}

.expertise {
  overflow: hidden;
  padding: 27px 0;
  color: var(--ink);
  background: var(--lime);
}

.expertise-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.expertise-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.expertise-track i {
  font-style: normal;
  font-size: 13px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.founder {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(55px, 8vw, 140px);
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  min-height: 680px;
  background: #d9d8d4;
}

.founder-image-wrap img {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.88) contrast(1.02);
}

.image-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 12px 16px;
  color: var(--white);
  background: var(--accent);
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.image-corner {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: grid;
  width: 122px;
  height: 122px;
  place-content: center;
  color: var(--ink);
  background: var(--lime);
  text-align: center;
  transform: rotate(3deg);
}

.image-corner span {
  font-family: var(--font-mono), monospace;
  font-size: 9px;
}

.image-corner strong {
  margin-top: 2px;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.founder-copy h2 {
  margin-top: 35px;
  font-size: clamp(47px, 5.5vw, 84px);
}

.founder-lead {
  max-width: 700px;
  margin: 42px 0 35px;
  padding-left: 25px;
  border-left: 3px solid var(--accent);
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 550;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.founder-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: rgba(23, 21, 32, 0.7);
  font-size: 14px;
  line-height: 1.72;
}

.signature {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}

.signature strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.signature span {
  margin-top: 4px;
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  color: var(--white);
  background: var(--accent);
}

.process-intro h2 {
  margin: 42px 0 28px;
  font-size: clamp(47px, 5vw, 78px);
}

.process-intro > p:last-child {
  max-width: 400px;
}

.process-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-steps article {
  display: grid;
  grid-template-columns: 60px 0.45fr 1fr;
  gap: 25px;
  align-items: center;
  min-height: 150px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.process-steps span {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}

.process-steps h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(55px, 9vw, 150px);
  background: var(--white);
}

.contact h2 {
  margin-top: 38px;
  font-size: clamp(48px, 5.8vw, 88px);
}

.contact-intro > p:not(.section-index) {
  max-width: 600px;
  margin: 35px 0 0;
  color: rgba(23, 21, 32, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  gap: 70px;
  margin-top: 58px;
}

.contact-details > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-details span,
.contact-form label > span {
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a {
  font-size: 17px;
  font-weight: 650;
}

.email-image-button {
  width: 260px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.email-image-button canvas {
  display: block;
  width: 260px;
  height: 34px;
}

.contact-form {
  padding: 42px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 18px 18px 0 var(--accent-light);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.button-accent {
  width: 100%;
  margin-top: 5px;
  color: var(--ink);
  background: var(--lime);
}

.button-accent:hover {
  background: #e4fa90;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-align: center;
}

footer {
  display: grid;
  min-height: 180px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 50px clamp(22px, 6.8vw, 130px);
  color: var(--white);
  background: var(--ink);
}

.footer-brand .brand-mark {
  background: var(--accent);
  color: var(--white);
}

footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  text-align: center;
}

footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 10px;
}

footer > div > span {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 850px;
  }

  .hero::before {
    display: none;
  }

  .hero-side {
    position: absolute;
    right: 6vw;
    bottom: 80px;
  }

  .section-heading {
    grid-template-columns: 0.3fr 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .founder {
    gap: 60px;
  }

  .founder-image-wrap,
  .founder-image-wrap img {
    min-height: 560px;
    height: 560px;
  }

  .founder-body {
    grid-template-columns: 1fr;
  }

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

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

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > p {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 72px;
  }

  .nav-cta {
    font-size: 0;
  }

  .nav-cta span {
    font-size: 13px;
  }

  .hero {
    min-height: 780px;
    padding-top: 130px;
  }

  .hero h1 {
    margin-top: 38px;
    font-size: clamp(64px, 21vw, 96px);
    line-height: 0.82;
  }

  .hero-intro {
    max-width: 92%;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-side {
    display: none;
  }

  .hero-foot {
    gap: 12px;
  }

  .section-pad {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .statement,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .statement > div > p {
    margin-top: 30px;
  }

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

  .service-card {
    min-height: 340px;
    padding: 28px;
  }

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

  .founder-image-wrap,
  .founder-image-wrap img {
    min-height: 500px;
    height: 500px;
  }

  .founder-copy h2 {
    margin-top: 30px;
  }

  .process-steps article {
    grid-template-columns: 38px 1fr;
  }

  .process-steps p {
    grid-column: 2;
  }

  .contact {
    gap: 50px;
  }

  .contact-details {
    flex-direction: column;
    gap: 28px;
  }

  .contact-form {
    padding: 30px 24px;
    box-shadow: 10px 10px 0 var(--accent-light);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  footer > div {
    align-items: flex-start;
  }
}

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

  .expertise-track {
    animation: none;
  }

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