@font-face{font-family:'DM Mono';font-style:normal;font-weight:400;font-display:swap;src:url("/assets/fonts/dm-mono-400.woff2") format("woff2");}
@font-face{font-family:'DM Mono';font-style:normal;font-weight:500;font-display:swap;src:url("/assets/fonts/dm-mono-500.woff2") format("woff2");}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url("/assets/fonts/inter-variable.woff2") format("woff2");}
@font-face{font-family:'Inter Tight';font-style:normal;font-weight:100 900;font-display:swap;src:url("/assets/fonts/inter-tight-variable.woff2") format("woff2");}
:root {
  --paper: #f2f1ec;
  --paper-2: #e9e8e1;
  --paper-trans: rgba(242, 241, 236, 0.88);
  --ink: #111110;
  --ink-2: #4c4b47;
  --ink-3: #6b6a63;
  --line: rgba(17, 17, 16, 0.13);
  --line-2: rgba(17, 17, 16, 0.30);
  --accent: #c8362b;
  --accent-dark: #9d241d;
  --white: #ffffff;
  --radius: 18px;
  --header-height: 72px;
  --grid: rgba(17, 17, 16, 0.06);
  --grid-line: repeating-linear-gradient(90deg, var(--grid) 0 1px, transparent 1px 100%);
  --logo: url("/assets/logo-mark-light.png");
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121211;
    --paper-2: #1c1c1a;
    --paper-trans: rgba(18, 18, 17, 0.90);
    --ink: #f2f1ec;
    --ink-2: #b5b4ad;
    --ink-3: #8a8983;
    --line: rgba(242, 241, 236, 0.12);
    --line-2: rgba(242, 241, 236, 0.28);
    --accent: #e54d42;
    --accent-dark: #c8362b;
    --white: #111110;
    --logo: url("/assets/logo-mark-dark.png");
    --grid: rgba(242, 241, 236, 0.07);
  }
}


html[data-theme="light"] {
  --paper:#f2f1ec; --paper-2:#e9e8e1; --paper-trans:rgba(242,241,236,0.88);
  --ink:#111110; --ink-2:#4c4b47; --ink-3:#6b6a63;
  --line:rgba(17,17,16,0.13); --line-2:rgba(17,17,16,0.30);
  --accent:#c8362b; --accent-dark:#9d241d; --white:#ffffff;
  --logo: url("/assets/logo-mark-light.png");
  --grid: rgba(17, 17, 16, 0.06);
}
html[data-theme="dark"] {
  --paper:#121211; --paper-2:#1c1c1a; --paper-trans:rgba(18,18,17,0.90);
  --ink:#f2f1ec; --ink-2:#b5b4ad; --ink-3:#8a8983;
  --line:rgba(242,241,236,0.12); --line-2:rgba(242,241,236,0.28);
  --accent:#e54d42; --accent-dark:#c8362b; --white:#111110;
  --logo: url("/assets/logo-mark-dark.png");
  --grid: rgba(242, 241, 236, 0.07);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.menu-toggle:focus-visible,
.theme-toggle:focus-visible,
.auto-toggle:focus-visible {
  outline-color: var(--accent);
}

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

.tight { font-family: 'Inter Tight', ui-sans-serif, system-ui, sans-serif; }
.mono { font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-variant-numeric: tabular-nums; }

.label {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.frame {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  background-image: var(--grid-line);
  background-origin: content-box;
  background-size: calc(100% / 12) 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper-trans);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.bar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
}

.brand-mark {
  width: 46px;
  height: 25px;
  flex: 0 0 auto;
  background: var(--logo) center / contain no-repeat;
}

.wordmark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover { color: var(--ink); }
.nav a:hover:after { transform: scaleX(1); transform-origin: left; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 8px;
  position: relative; z-index: 110;
}
.theme-toggle:active { background: var(--line); }
.theme-toggle svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: block; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.menu-toggle:active {
  background: var(--line);
}

.hamburger {
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: var(--paper);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 32px max(24px, env(safe-area-inset-right)) max(40px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  border-bottom: 1px solid var(--line);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.mobile-nav a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav a:active {
  color: var(--accent);
}

.mobile-meta {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-2);
}

.hero {
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 82px);
}

.kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 60px);
  flex-wrap: wrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  position: relative;
}

.hero-copy {
  grid-column: 1 / span 9;
  position: relative;
  z-index: 2;
}

h1 {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.90;
  font-size: clamp(44px, 9.6vw, 140px);
  word-break: break-word;
}

h1 .indent {
  display: inline-block;
  padding-left: clamp(0px, 8vw, 10.5%);
}

h1 .accent { color: var(--accent); }

.hero-note {
  grid-column: 10 / span 3;
  align-self: end;
  padding-bottom: 8px;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.hero-note p {
  margin: 0;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 28ch;
}

.hero-index {
  list-style: none;
  margin: 18px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 18px;
  font-size: 12px;
  color: var(--ink-2);
}

.hero-index li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-index .mono {
  font-size: 10px;
  color: var(--ink-3);
}

.hero-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.auto-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  min-height: 24px;
  transition: color 0.2s ease;
}

.auto-toggle:hover { color: var(--ink); }

.auto-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: autoPulse 2s ease-in-out infinite;
}

.auto-toggle[aria-pressed="false"] .auto-icon {
  background: var(--ink-3);
  animation: none;
}

@keyframes autoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 54, 43, 0.35); }
  50% { box-shadow: 0 0 0 5px rgba(200, 54, 43, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .auto-icon { animation: none; }
}

.fx {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.fx-tunnel {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.fx-dots {
  left: 0;
  top: 0;
  width: min(32%, 400px);
  height: 100%;
  overflow: clip;
  opacity: 0.85;
}

.fx-dots span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-3);
  opacity: 0;
  animation: dotOut 6.4s linear infinite;
}

@keyframes dotOut {
  0% { transform: scale(0.1); opacity: 0.8; }
  100% { transform: scale(36); opacity: 0; }
}

.fx-lotus {
  left: 0;
  top: 50%;
  width: min(26%, 300px);
  height: auto;
  transform: translateY(-50%);
  color: var(--ink-3);
  opacity: 0.75;
}

.fx-lotus path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: lotusDraw 7s ease-in-out infinite;
}

@keyframes lotusDraw {
  0% { stroke-dashoffset: 1; }
  40% { stroke-dashoffset: 0; }
  75% { stroke-dashoffset: 0; opacity: 1; }
  92% { opacity: 0; stroke-dashoffset: 0; }
  93% { stroke-dashoffset: 1; opacity: 0; }
  100% { stroke-dashoffset: 1; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fx-dots span { animation: none; opacity: 0; }
  .fx-lotus path { animation: none; stroke-dashoffset: 0; }
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(36px, 6vw, 64px);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.scroll-hint {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-3);
}

.scroll-line {
  width: 36px;
  height: 1px;
  background: var(--ink-3);
}

.section {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}
.sec {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.aside { grid-column: 1 / span 3; }
.body { grid-column: 4 / span 9; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 0;
}

.section-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.section-count {
  color: var(--ink-3);
  font-size: 12px;
}

.list { border-top: 0; }

.row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.25s ease, background 0.25s ease;
}

.row:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}

.row:hover, .row:active {
  padding-left: 10px;
  background: rgba(200, 54, 43, 0.04);
}

.row:hover:before, .row:active:before {
  transform: scaleY(1);
  transform-origin: top;
}

.row .idx {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.row .name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.8vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.row .tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}


.statement {
  margin: 0;
  max-width: none;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(32px, 6.5vw, 88px);
}

.statement .accent { color: var(--accent); }
.statement .muted { color: var(--ink-3); }

.purpose-meta {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  margin-top: clamp(40px, 6vw, 78px);
}

.purpose-meta .left { grid-column: 1 / span 3; }
.purpose-meta .right { grid-column: 6 / span 7; }

.purpose-meta p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(14px, 1.4vw, 16px);
  max-width: 52ch;
  line-height: 1.65;
}

.method-card {
  margin-top: clamp(40px, 6vw, 74px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line);
}

.method-card article {
  padding: 24px 20px 28px 0;
  min-height: 140px;
  border-right: 1px solid var(--line);
}

.method-card article + article { padding-left: 20px; }
.method-card article:last-child { border-right: 0; }

.method-number {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
}

.method-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 10px;
}

.method-text {
  margin: 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.55;
  max-width: 32ch;
}

footer {
  padding: 32px 0 max(40px, env(safe-area-inset-bottom));
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot .full {
  width: 100%;
  text-align: center;
}

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero-note { animation: fadeIn 0.8s 0.18s both; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  @keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(2deg); } }
}

@media (max-width: 960px) {
  .auto-toggle { display: none; }
  .aside { grid-column: 1 / -1; margin-bottom: 8px; }
  .body { grid-column: 1 / -1; }

  .fx-dots,
  .fx-lotus { display: none; }

  .hero-grid { display: flex; flex-direction: column; }
  .hero-note { margin-top: 24px; }

  .purpose-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

  .method-card { grid-template-columns: 1fr; }
  .method-card article, .method-card article + article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .method-card article:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  :root { --header-height: 64px; }

  .frame {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    background-image: none;
  }

  .menu-toggle { display: flex; }
  .nav { display: none; }

  .header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  body:before { display: none; }


  .row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }
  .row .tag { display: none; }

  .foot {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}


@media (min-width: 961px) {
  :root {
    --header-height: 76px;
  }

  .frame {
    width: 100%;
    max-width: none;
    padding-left: clamp(56px, 5vw, 140px);
    padding-right: clamp(56px, 5vw, 140px);
  }

  .hero,
  .section {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html {
    scroll-snap-type: y proximity;
  }

  footer {
    scroll-snap-align: end;
  }

  .bar {
    min-height: var(--header-height);
    gap: 32px;
  }

  .nav {
    gap: 34px;
    margin-left: auto;
    margin-right: 32px;
  }

  .nav a {
    font-size: 11px;
    letter-spacing: .13em;
  }

  .header-right {
    gap: 18px;
  }

  .hero-inner {
    padding-top: 78px;
    padding-bottom: 62px;
  }

  .kicker {
    margin-bottom: 52px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 8.6fr) minmax(260px, 3.4fr);
    column-gap: 56px;
    align-items: end;
    min-height: 438px;
  }

  .hero-copy {
    grid-column: 1;
    max-width: 980px;
    padding-bottom: 10px;
  }

  h1 {
    font-size: clamp(74px, 8.25vw, 126px);
    line-height: .855;
    letter-spacing: -.062em;
    max-width: 10.6ch;
  }

  h1 .indent {
    padding-left: 7.5%;
  }

  .hero-note {
    grid-column: 2;
    align-self: end;
    margin: 0 0 18px;
    padding: 0 0 0 26px;
    border-left: 1px solid var(--line-2);
    max-width: 320px;
    z-index: 3;
  }

  .hero-note p {
    max-width: 28ch;
    font-size: 14px;
    line-height: 1.7;
  }


  .hero-bottom {
    margin-top: 52px;
    padding-top: 14px;
  }

  .sec {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .grid {
    grid-template-columns: 2.3fr 9.7fr;
    column-gap: 44px;
  }

  .aside {
    grid-column: 1;
    padding-top: 6px;
  }

  .body {
    grid-column: 2;
    min-width: 0;
  }

  .section-head {
    padding-bottom: 20px;
  }

  .row {
    grid-template-columns: 52px minmax(0, 1fr) 130px;
    min-height: 82px;
    padding: 18px 0;
  }

  .row .name {
    font-size: clamp(22px, 2.25vw, 32px);
  }

  .row .tag {
    text-align: right;
    font-size: 11px;
  }

  .purpose .body {
    grid-column: 2;
  }

  .statement {
    max-width: 1040px;
    font-size: clamp(54px, 5.2vw, 74px);
    line-height: .99;
  }

  .purpose-meta {
    grid-template-columns: 2.3fr 9.7fr;
    column-gap: 44px;
    margin-top: 66px;
  }

  .purpose-meta .left {
    grid-column: 1;
  }

  .purpose-meta .right {
    grid-column: 2;
  }

  .purpose-meta p {
    max-width: 58ch;
  }

  .method-card {
    margin-top: 62px;
  }

  .method-card article {
    min-height: 172px;
    padding: 26px 26px 30px 0;
  }

  .method-card article + article {
    padding-left: 26px;
  }

  .method-name {
    font-size: 27px;
  }

  footer {
    padding-top: 38px;
    padding-bottom: 56px;
  }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 8fr) minmax(230px, 4fr);
    column-gap: 34px;
  }

  h1 {
    font-size: clamp(66px, 8.4vw, 98px);
  }


  .grid,
  .purpose-meta {
    grid-template-columns: 2.5fr 9.5fr;
    column-gap: 30px;
  }
}
