:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #171814;
  --paper: #f5f3ec;
  --cream: #e9e5d9;
  --acid: #d8ff62;
  --coral: #ff6b4a;
  --violet: #8b7bff;
  --blue: #75b9ff;
  --line: rgba(23, 24, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.site-header {
  align-items: center;
  background: rgba(245, 243, 236, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 78px;
  left: 0;
  padding: 0 4.4vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 750;
  gap: 10px;
  letter-spacing: 0.18em;
  width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 9px 9px 9px 2px;
  color: var(--acid);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  transform: rotate(-4deg);
  width: 34px;
}

nav {
  display: flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 32px;
}

nav a,
.header-link,
footer a,
.card-links a {
  transition: opacity 180ms ease;
}

nav a:hover,
.header-link:hover,
footer a:hover,
.card-links a:hover {
  opacity: 0.55;
}

.header-link {
  font-size: 0.82rem;
  font-weight: 700;
  justify-self: end;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 4.4vw 7vw;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.71rem;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 34px;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.13);
  height: 8px;
  width: 8px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 7.3vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.85;
  margin: 0;
  max-width: 880px;
}

.hero h1 span {
  color: var(--coral);
  font-style: italic;
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.55;
  margin: 40px 0 0;
  max-width: 610px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 26px;
  padding: 15px 21px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.button-secondary:hover {
  background: white;
}

.hero-showcase {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(145deg, var(--acid) 0%, #e7ffa7 48%, #d1f54b 100%);
  border-left: 1px solid var(--line);
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero-showcase::after {
  background-image: radial-gradient(rgba(23, 24, 20, 0.24) 0.7px, transparent 0.7px);
  background-size: 16px 16px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.orbit {
  border: 1px solid rgba(23, 24, 20, 0.23);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  height: 48%;
  width: 64%;
}

.orbit-two {
  height: 78%;
  width: 104%;
}

.showcase-note {
  align-items: center;
  display: flex;
  flex-direction: column;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  z-index: 3;
}

.showcase-note span,
.showcase-note small {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-note strong {
  font-family: Georgia, serif;
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 9px 0 12px;
}

.floating-app {
  border: 8px solid white;
  border-radius: 27%;
  box-shadow: 0 20px 44px rgba(23, 24, 20, 0.24);
  overflow: hidden;
  position: absolute;
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 4;
}

.floating-app:hover {
  box-shadow: 0 28px 60px rgba(23, 24, 20, 0.31);
  transform: translateY(-7px) rotate(0deg);
}

.floating-app-one {
  left: 11%;
  top: 15%;
  transform: rotate(-8deg);
  width: 21%;
}

.floating-app-two {
  right: 9%;
  top: 20%;
  transform: rotate(7deg);
  width: 18%;
}

.floating-app-three {
  bottom: 14%;
  right: 13%;
  transform: rotate(-6deg);
  width: 22%;
}

.floating-app-four {
  bottom: 17%;
  left: 8%;
  transform: rotate(8deg);
  width: 18%;
}

.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 19px 4.4vw;
}

.marquee div {
  align-items: center;
  display: flex;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-style: italic;
  justify-content: space-between;
  white-space: nowrap;
}

.marquee i {
  color: var(--acid);
  font-style: normal;
}

.apps-section,
.principles-section {
  padding: 120px 4.4vw;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-heading.compact {
  margin-bottom: 46px;
}

.kicker {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--acid);
}

.section-heading h2,
.contact-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
}

.section-heading > p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 4px;
  max-width: 390px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-card {
  background: #ece9de;
  border-radius: 28px;
  min-height: 500px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.app-card::after {
  background: var(--card-color);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  height: 310px;
  opacity: 0.88;
  position: absolute;
  right: -70px;
  top: -90px;
  width: 310px;
}

.app-card.mint {
  --card-color: #b8f0c2;
}

.app-card.coral {
  --card-color: #ff9d85;
}

.app-card.violet {
  --card-color: #bdb3ff;
}

.app-card.sun {
  --card-color: #ffdc67;
}

.card-topline {
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0.11em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.app-icon {
  border: 6px solid rgba(255, 255, 255, 0.86);
  border-radius: 27%;
  box-shadow: 0 16px 32px rgba(23, 24, 20, 0.15);
  height: 116px;
  margin: 72px 0 34px;
  position: relative;
  width: 116px;
  z-index: 2;
}

.app-card h3 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 2;
}

.app-card > p {
  font-size: 0.95rem;
  line-height: 1.58;
  margin: 20px 0 50px;
  max-width: 490px;
  position: relative;
  z-index: 2;
}

.card-links {
  align-items: center;
  bottom: 28px;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 11px;
  left: 28px;
  position: absolute;
  z-index: 2;
}

.about-section {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  padding: 120px 4.4vw;
}

.statement {
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 5.1vw, 6.1rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 48px 0 0;
}

.statement em {
  color: var(--acid);
  font-weight: 400;
}

.company-card {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 24px;
  padding: 28px;
}

.company-card > p {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.company-card dl {
  margin: 0 0 30px;
}

.company-card dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  gap: 18px;
  grid-template-columns: 100px 1fr;
  padding: 15px 0;
}

.company-card dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

.company-card dd {
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}

.company-card > a {
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 700;
}

.principles-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principles-grid article {
  min-height: 290px;
  padding: 27px 34px 32px 0;
}

.principles-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.principles-grid span {
  color: var(--coral);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
}

.principles-grid h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 64px 0 18px;
}

.principles-grid p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

.contact-section {
  background: var(--coral);
  padding: 110px 4.4vw 120px;
}

.contact-content {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.35fr 0.65fr;
  margin-top: 58px;
}

.contact-content h2 {
  max-width: 850px;
}

.contact-content p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 380px;
}

.contact-email {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 700;
  justify-content: space-between;
  padding-bottom: 9px;
  width: 100%;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  font-size: 0.72rem;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 38px 4.4vw;
}

footer p {
  color: rgba(255, 255, 255, 0.53);
  justify-self: center;
  margin: 0;
}

footer > div {
  display: flex;
  gap: 22px;
  justify-self: end;
}

.footer-brand .brand-mark {
  background: var(--acid);
  color: var(--ink);
}

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

  nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 660px;
  }

  .hero-showcase {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 650px;
  }

  .about-section,
  .contact-content {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .company-card {
    max-width: 600px;
  }

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

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .brand {
    font-size: 0.72rem;
  }

  .header-link {
    font-size: 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 610px;
    padding: 90px 20px 70px;
  }

  .eyebrow {
    font-size: 0.61rem;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-description {
    font-size: 0.96rem;
    margin-top: 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .hero-showcase {
    min-height: 510px;
  }

  .floating-app {
    border-width: 5px;
  }

  .floating-app-one,
  .floating-app-three {
    width: 24%;
  }

  .floating-app-two,
  .floating-app-four {
    width: 20%;
  }

  .marquee div {
    gap: 20px;
    justify-content: flex-start;
  }

  .marquee span:nth-of-type(n + 3),
  .marquee i:nth-of-type(n + 2) {
    display: none;
  }

  .apps-section,
  .principles-section,
  .about-section,
  .contact-section {
    padding: 82px 20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .section-heading h2,
  .contact-content h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

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

  .app-card {
    min-height: 480px;
    padding: 24px;
  }

  .app-card::after {
    height: 250px;
    width: 250px;
  }

  .app-icon {
    height: 100px;
    margin-top: 64px;
    width: 100px;
  }

  .card-links {
    bottom: 24px;
    left: 24px;
  }

  .statement {
    margin-top: 40px;
  }

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

  .principles-grid article {
    min-height: 245px;
    padding: 27px 0;
  }

  .principles-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .principles-grid h3 {
    margin-top: 48px;
  }

  .contact-content {
    gap: 54px;
    margin-top: 42px;
  }

  footer {
    align-items: start;
    gap: 34px;
    grid-template-columns: 1fr;
    padding: 38px 20px;
  }

  footer > div,
  footer p {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
}

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

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