:root {
  --ink: #173126;
  --forest: #1f4934;
  --deep: #102b1e;
  --moss: #6f8e70;
  --sage: #b7c5b3;
  --mist: #d7ddd2;
  --sand: #ded9cb;
  --paper: #e9e6dc;
  --cream: #f1eee5;
  --line: rgba(23, 49, 38, 0.16);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --serif: "Newsreader", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: clip;
  opacity: 0;
  transform: translateY(7px);
  filter: blur(3px);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.42s ease;
}
body.ready {
  opacity: 1;
  transform: none;
  filter: none;
}
body.leaving {
  opacity: 0;
  transform: translateY(-7px);
  filter: blur(3px);
}
.wrap {
  width: min(1200px, calc(100% - 56px));
  margin-inline: auto;
}
a {
  color: inherit;
}
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(233, 230, 220, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.wrap {
  width: 100%;
  padding-inline: max(28px, calc((100vw - 1200px) / 2));
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 34px;
}
.site-header nav a {
  text-decoration: none;
  font-size: 12px;
  color: #53675d;
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.site-header nav a:hover:after,
.site-header nav a.active:after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header nav a.active {
  color: var(--ink);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  background: var(--ink);
  margin: 6px;
}
.overline,
.index,
.story-info {
  font: 500 9px var(--mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.index {
  color: #718078;
}
.home-hero {
  min-height: 750px;
  padding: 115px 0 75px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.home-hero h1,
.page-hero h1 {
  font: 500 clamp(64px, 8.2vw, 112px) / 0.91 var(--sans);
  letter-spacing: -7px;
  margin: 36px 0 55px;
  position: relative;
  z-index: 2;
}
.home-hero h1 em,
.page-hero h1 em,
.grid-intro h2 em,
.answer-title h2 em,
.restraint h2 em {
  font: 400 1.05em var(--serif);
  color: var(--forest);
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
  align-items: end;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.hero-bottom > p {
  grid-column: 2;
  max-width: 600px;
  color: #52665c;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.round-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 45px;
  padding: 15px 18px;
  border: 1px solid var(--forest);
  text-decoration: none;
  font-size: 12px;
  transition: 0.35s;
}
.round-link:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-3px);
}
.round-link span {
  transition: 0.35s;
}
.round-link:hover span {
  transform: rotate(45deg);
}
.scroll-note {
  position: absolute;
  left: 0;
  bottom: 74px;
  font: 9px var(--mono);
  letter-spacing: 1px;
  color: #75837b;
}
.scroll-note span {
  margin-left: 18px;
}
.hero-orbit {
  position: absolute;
  right: 1%;
  top: 80px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(31, 73, 52, 0.13);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-orbit:before,
.hero-orbit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 73, 52, 0.11);
}
.hero-orbit:before {
  inset: 65px;
}
.hero-orbit:after {
  inset: 140px;
  background: rgba(183, 197, 179, 0.18);
}
.hero-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--forest);
  border-radius: 50%;
}
.hero-orbit i:nth-child(1) {
  top: 20%;
  left: 9%;
}
.hero-orbit i:nth-child(2) {
  right: 4%;
  bottom: 32%;
  background: var(--moss);
}
.hero-orbit i:nth-child(3) {
  bottom: 3%;
  left: 44%;
  background: #a1b393;
}
@keyframes float {
  50% {
    transform: translateY(12px) rotate(3deg);
  }
}
.section-pad {
  padding-block: 130px;
}
.grid-intro {
  display: grid;
  grid-template-columns: 0.5fr 1.35fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.grid-intro h2,
.answer-title h2 {
  font: 500 clamp(47px, 5.4vw, 72px) / 1 var(--sans);
  letter-spacing: -4px;
  margin: 0;
}
.grid-intro .lead {
  color: #596b61;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
.tension {
  background: var(--mist);
}
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 95px;
  border-top: 1px solid var(--line);
}
.issue-grid article {
  padding: 35px 42px 15px 0;
  border-right: 1px solid var(--line);
  min-height: 350px;
}
.issue-grid article + article {
  padding-left: 38px;
}
.issue-grid article:last-child {
  border-right: 0;
}
.issue-grid article > span {
  font: 500 9px var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--moss);
}
.issue-grid h3 {
  font: 500 26px/1.2 var(--sans);
  letter-spacing: -1px;
  margin: 65px 0 18px;
}
.issue-grid p,
.answer-copy p,
.origin-grid p,
.long-read p,
.tech-field p,
.capability-grid p,
.restraint p,
.bio,
.story-grid p,
.featured-story p {
  color: #586a60;
  font-size: 13px;
  line-height: 1.8;
}
.answer {
  background: var(--deep);
  color: #edf2ed;
}
.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13%;
}
.answer-title h2 em {
  color: #9cb69d;
}
.answer-copy .large-copy {
  font: 400 27px/1.5 var(--serif);
  color: #dce7dd;
  margin-top: 0;
}
.answer-copy p {
  color: #a9baae;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
  margin-top: 20px;
  text-decoration: none;
  font-size: 12px;
}
.text-link span {
  transition: 0.3s;
}
.text-link:hover span {
  transform: translate(4px, -4px);
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.values div {
  padding: 25px 20px 0 0;
}
.values b {
  display: block;
  font: 9px var(--mono);
  color: #8da795;
  margin-bottom: 25px;
}
.values span {
  font-size: 12px;
}
.founders-preview {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 80px;
}
.founders-preview h2 {
  font: 500 clamp(40px, 5vw, 65px) / 1.08 var(--sans);
  letter-spacing: -3px;
  margin: 0;
}
.founders-preview > div > p {
  max-width: 650px;
  color: #5e7066;
  line-height: 1.8;
  font-size: 14px;
}
.footer {
  min-height: 150px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer > p {
  margin-right: auto;
  margin-left: 18px;
  font: 500 11px var(--mono);
  color: var(--forest);
  letter-spacing: 0.5px;
}
.footer > div {
  display: flex;
  gap: 28px;
}
.footer > div a {
  font-size: 11px;
  text-decoration: none;
}
.page-hero {
  padding: 125px 0 120px;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr 0.8fr;
  gap: 55px;
  align-items: start;
}
.page-hero h1 {
  font-size: clamp(60px, 7vw, 96px);
  margin: 0;
}
.page-hero > div p {
  font-size: 15px;
  line-height: 1.8;
  color: #596c61;
  margin: 0;
}
.manifesto {
  background: var(--deep);
  color: #eaf0eb;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 80px;
}
.manifesto blockquote {
  font: 400 clamp(39px, 5.5vw, 69px) / 1.25 var(--serif);
  margin: 0;
}
.manifesto blockquote em {
  color: #9fba9f;
}
.long-read {
  display: grid;
  grid-template-columns: 0.42fr 1.2fr;
  gap: 14%;
}
.long-read aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 45px;
  height: max-content;
}
.long-read aside span {
  font: 9px var(--mono);
  letter-spacing: 1px;
  color: #73827a;
}
.long-read article {
  padding-bottom: 95px;
}
.long-read article + article {
  padding-top: 95px;
  border-top: 1px solid var(--line);
}
.long-read h2,
.origin-grid h2,
.tech-field h2,
.restraint h2 {
  font: 500 clamp(38px, 4.3vw, 58px) / 1.05 var(--sans);
  letter-spacing: -3px;
  margin: 25px 0 35px;
}
.long-read p,
.origin-grid p,
.tech-field p,
.restraint p {
  font-size: 15px;
}
.principles {
  background: var(--sage);
}
.principles > .wrap > .index {
  margin-bottom: 65px;
}
.principle-list {
  border-top: 1px solid var(--line);
}
.principle-list article {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.principle-list b {
  font: 500 25px var(--sans);
  letter-spacing: -1px;
}
.principle-list p {
  margin: 0;
  color: #506157;
  font-size: 13px;
  line-height: 1.7;
}
.tech-field {
  background: var(--forest);
  color: #eef3ef;
}
.tech-field-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
}
.tech-field h2 {
  color: #fff;
}
.tech-field p {
  color: #becdc2;
}
.tech-signal {
  height: 520px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.17);
  overflow: hidden;
}
.tech-signal:before,
.tech-signal:after,
.tech-signal i {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.tech-signal:before {
  width: 400px;
  height: 400px;
}
.tech-signal:after {
  width: 265px;
  height: 265px;
}
.tech-signal i:nth-child(1) {
  width: 135px;
  height: 135px;
  background: rgba(183, 197, 179, 0.1);
}
.tech-signal i:nth-child(2) {
  width: 12px;
  height: 12px;
  background: #b9d8ad;
  left: 18%;
  top: 31%;
  border: 0;
}
.tech-signal i:nth-child(3) {
  width: 8px;
  height: 8px;
  background: #d9e7d4;
  left: 79%;
  top: 68%;
  border: 0;
}
.tech-signal span {
  position: absolute;
  width: 1px;
  height: 100%;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.capabilities > .index {
  margin-bottom: 65px;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.capability-grid article {
  padding: 35px 65px 55px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 270px;
}
.capability-grid article:nth-child(even) {
  padding-left: 55px;
  border-right: 0;
}
.capability-grid span {
  font: 9px var(--mono);
  color: #75847c;
}
.capability-grid h3 {
  font: 500 27px var(--sans);
  letter-spacing: -1px;
  margin: 65px 0 13px;
}
.restraint {
  background: var(--sand);
}
.restraint-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 80px;
}
.restraint h2 em {
  color: var(--forest);
}
.origin {
  background: var(--mist);
}
.origin-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.4fr;
  gap: 13%;
}
.origin-grid h2 {
  margin-top: 0;
}
.team-section > .index {
  margin-bottom: 55px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.founder-photo {
  height: 530px;
  overflow: hidden;
  background: var(--sage);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}
.founder:first-child img {
  object-position: center 34%;
}
.founder:last-child img {
  object-position: center 50%;
}
.founder:hover img {
  transform: scale(1.018);
  filter: saturate(1);
}
.founder-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.founder-meta h2 {
  font: 500 25px var(--sans);
  letter-spacing: -1px;
  margin: 0 0 6px;
}
.founder-meta p {
  font: 9px var(--mono);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #66786e;
  margin: 0;
}
.founder-meta > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 9px var(--mono);
}
.bio {
  max-width: 520px;
}
.belief {
  background: var(--forest);
  color: #edf3ee;
}
.belief-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 80px;
}
.belief h2 {
  font: 500 clamp(42px, 5vw, 68px) / 1.1 var(--sans);
  letter-spacing: -3px;
  margin: 0;
}
.news-list > .index {
  margin-bottom: 55px;
}
.featured-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  min-height: 500px;
}
.story-mark {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.story-mark img {
  width: 145px;
  height: 145px;
  object-fit: contain;
}
.story-mark span {
  font: 9px var(--mono);
  color: #cad7cd;
  letter-spacing: 1.2px;
}
.featured-story > div:last-child {
  padding: 60px;
}
.featured-story h2 {
  font: 500 43px/1.1 var(--sans);
  letter-spacing: -2px;
}
.story-info {
  color: #76857d !important;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line);
}
.story-grid article {
  padding: 32px 38px 25px 0;
  border-right: 1px solid var(--line);
  min-height: 310px;
}
.story-grid article + article {
  padding-left: 34px;
}
.story-grid article:last-child {
  border: 0;
}
.story-grid h3 {
  font: 500 24px/1.2 var(--sans);
  letter-spacing: -1px;
  margin: 48px 0 15px;
}
.story-grid a,
.story-grid > article > span {
  font-size: 11px;
  text-decoration: none;
  color: var(--forest);
}
.newsletter-note {
  margin-bottom: 120px;
  padding: 50px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-note p {
  font: 500 25px var(--sans);
  margin: 0;
}
.newsletter-note span {
  font-size: 12px;
  color: #63756a;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.page-wipe {
  display: none;
}
.page-wipe::before,
.wipe-layer {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(100%);
}
.page-wipe::before {
  background: var(--sage);
}
.wipe-layer {
  background: var(--forest);
}
.wipe-brand {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #eef3ee;
  font-weight: 600;
  opacity: 0;
}
.wipe-brand img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}
.page-wipe.enter::before {
  animation: curtainReveal 0.82s 0.08s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.page-wipe.enter .wipe-layer {
  animation: curtainReveal 0.82s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.page-wipe.enter .wipe-brand {
  animation: brandReveal 0.58s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.page-wipe.exit::before {
  animation: curtainCover 0.68s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.page-wipe.exit .wipe-layer {
  animation: curtainCover 0.68s 0.08s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.page-wipe.exit .wipe-brand {
  animation: brandCover 0.46s 0.22s ease both;
}
@keyframes curtainReveal {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-102%);
  }
}
@keyframes curtainCover {
  0% {
    transform: translateY(102%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes brandReveal {
  0%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}
@keyframes brandCover {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Cookie consent                                                              */
/* -------------------------------------------------------------------------- */

html.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-settings-button[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(1060px, calc(100% - 36px));
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  color: #edf3ee;
  background: rgba(16, 43, 30, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(16, 43, 30, 0.32);
  backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  transform: translate(-50%, 28px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cookie-banner.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-banner__content {
  min-width: 0;
}

.cookie-banner__eyebrow,
.cookie-modal__eyebrow {
  display: block;
  font: 500 8px var(--mono);
  letter-spacing: 1.4px;
  color: #a9bea9;
}

.cookie-banner h2 {
  margin: 9px 0 8px;
  max-width: 580px;
  font: 500 clamp(20px, 2.2vw, 28px) / 1.08 var(--sans);
  letter-spacing: -1px;
  color: #f4f7f4;
}

.cookie-banner p {
  margin: 0;
  max-width: 650px;
  font-size: 12px;
  line-height: 1.65;
  color: #c9d5cc;
}

.cookie-banner a {
  color: #edf3ee;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner__actions {
  justify-content: flex-end;
  max-width: 430px;
}

.cookie-button,
.cookie-modal__close,
.cookie-settings-button {
  -webkit-tap-highlight-color: transparent;
}

.cookie-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 11px 15px;
  color: #edf3ee;
  background: transparent;
  font: 500 10px var(--sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.cookie-button:hover {
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.cookie-button:focus-visible,
.cookie-modal__close:focus-visible,
.cookie-settings-button:focus-visible,
.cookie-switch input:focus-visible + span {
  outline: 2px solid #d9e7d4;
  outline-offset: 3px;
}

.cookie-accept,
.cookie-save {
  color: var(--deep);
  background: var(--sage);
  border-color: var(--sage);
}

.cookie-accept:hover,
.cookie-save:hover {
  color: var(--deep);
  background: #cad5c6;
  border-color: #cad5c6;
}

.cookie-customize {
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-modal {
  width: min(620px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(23, 49, 38, 0.22);
  border-radius: 2px;
  box-shadow: 0 30px 100px rgba(7, 24, 15, 0.35);
}

.cookie-modal::backdrop {
  background: rgba(7, 24, 15, 0.58);
  backdrop-filter: blur(7px);
}

.cookie-modal__content {
  padding: 30px;
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cookie-modal__header h2 {
  margin: 9px 0 0;
  font: 500 clamp(28px, 5vw, 40px) / 1 var(--sans);
  letter-spacing: -2px;
}

.cookie-modal__eyebrow {
  color: var(--moss);
}

.cookie-modal__close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font: 300 25px/1 var(--sans);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.cookie-modal__close:hover {
  background: var(--mist);
  transform: rotate(6deg);
}

.cookie-modal__intro {
  margin: 24px 0 26px;
  max-width: 520px;
  color: #586a60;
  font-size: 13px;
  line-height: 1.7;
}

.cookie-preferences-list {
  border-top: 1px solid var(--line);
}

.cookie-preference {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

label.cookie-preference {
  cursor: pointer;
}

.cookie-preference strong {
  display: block;
  margin-bottom: 7px;
  font: 600 14px var(--sans);
}

.cookie-preference p {
  margin: 0;
  max-width: 410px;
  color: #687a70;
  font-size: 12px;
  line-height: 1.55;
}

.cookie-status {
  white-space: nowrap;
  font: 500 9px var(--mono);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--forest);
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch > span {
  width: 48px;
  height: 27px;
  display: block;
  position: relative;
  border: 1px solid rgba(23, 49, 38, 0.28);
  border-radius: 999px;
  background: var(--mist);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.cookie-switch > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(16, 43, 30, 0.22);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cookie-switch input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
}

.cookie-switch input:checked + span::after {
  transform: translateX(21px);
}

.cookie-modal__actions {
  justify-content: flex-end;
  margin-top: 26px;
}

.cookie-modal .cookie-button {
  color: var(--ink);
  border-color: rgba(23, 49, 38, 0.28);
}

.cookie-modal .cookie-save {
  color: var(--cream);
  background: var(--forest);
  border-color: var(--forest);
}

.cookie-modal .cookie-save:hover {
  color: var(--cream);
  background: var(--deep);
  border-color: var(--deep);
}

.cookie-settings-button {
  position: fixed;
  z-index: 70;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #edf3ee;
  background: rgba(16, 43, 30, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 34px rgba(16, 43, 30, 0.24);
  backdrop-filter: blur(14px);
  font: 500 9px var(--mono);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.cookie-settings-button:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.cookie-settings-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 860px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    width: calc(100% - 20px);
    bottom: max(10px, env(safe-area-inset-bottom));
    max-height: calc(100dvh - 20px);
    padding: 20px;
    gap: 18px;
    overflow-y: auto;
  }

  .cookie-banner h2 {
    font-size: 22px;
  }

  .cookie-banner p {
    font-size: 11px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cookie-button {
    width: 100%;
    min-height: 46px;
  }

  .cookie-customize {
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.24);
  }

  .cookie-modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .cookie-modal__content {
    padding: 22px 20px;
  }

  .cookie-modal__header h2 {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .cookie-modal__close {
    width: 38px;
    height: 38px;
  }

  .cookie-preference {
    min-height: 0;
    gap: 16px;
    padding: 20px 0;
  }

  .cookie-preference p {
    font-size: 11px;
  }

  .cookie-modal__actions {
    justify-content: stretch;
  }

  .cookie-modal .cookie-reject {
    color: var(--ink);
  }

  .cookie-settings-button {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .cookie-settings-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

.slogan {
	font-family: var(--mono) !important;
	letter-spacing: -0.0005em !important;
}
  
@media (max-width: 900px) {
  .wrap {
    width: min(100% - 34px, 1200px);
  }
  .site-header {
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
    padding: 18px 0;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    order: 3;
    width: 100%;
    padding: 25px 0 8px;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid var(--line);
  }
  .site-header.menu-open nav {
    display: flex;
  }
  .home-hero h1,
  .page-hero h1 {
    letter-spacing: -5px;
  }
  .grid-intro,
  .page-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .issue-grid {
    grid-template-columns: 1fr;
  }
  .issue-grid article,
  .issue-grid article + article {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .issue-grid h3 {
    margin-top: 35px;
  }
  .answer-grid,
  .tech-field-inner,
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .founders-preview,
  .manifesto-grid,
  .restraint-grid,
  .belief-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-bottom > p,
  .round-link {
    grid-column: 1;
  }
  .scroll-note {
    display: none;
  }
  .hero-orbit {
    width: 340px;
    height: 340px;
    right: -100px;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .long-read {
    grid-template-columns: 1fr;
  }
  .long-read aside {
    display: none;
  }
  .founder-photo {
    height: 470px;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-grid article,
  .story-grid article + article {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .newsletter-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .section-pad {
    padding-block: 85px;
  }
  .home-hero {
    min-height: 690px;
    padding-top: 85px;
  }
  .home-hero h1,
  .page-hero h1 {
    font-size: 52px;
    letter-spacing: -3.5px;
  }
  .hero-orbit {
    top: 70px;
    right: -155px;
  }
  .hero-bottom > p {
    font-size: 14px;
  }
  .grid-intro h2,
  .answer-title h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .issue-grid {
    margin-top: 55px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .values div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 20px;
  }
  .footer {
    padding: 35px 0;
    min-height: 180px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer > p {
    order: initial;
    width: auto;
    margin-left: 0;
  }

  .footer > div {
    width: 100%;
    order: 3;
  }
  .page-hero {
    padding: 85px 0;
  }
  .manifesto blockquote {
    font-size: 40px;
  }
  .principle-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tech-signal {
    height: 360px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article,
  .capability-grid article:nth-child(even) {
    padding: 30px 0;
    border-right: 0;
    min-height: auto;
  }
  .capability-grid h3 {
    margin-top: 35px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .founder-photo {
    height: 430px;
  }
  .belief h2 {
    font-size: 42px;
  }
  .featured-story {
    grid-template-columns: 1fr;
  }
  .story-mark {
    min-height: 330px;
  }
  .featured-story > div:last-child {
    padding: 35px 25px;
  }
  .featured-story h2 {
    font-size: 34px;
  }
  .newsletter-note {
    padding: 35px 24px;
  }
  .logo img {
    width: 29px;
    height: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
