@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/eb-garamond-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/eb-garamond-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #0a1c1d;
  --ink-soft: #153436;
  --teal: #075d67;
  --teal-bright: #0fc099;
  --mint: #b9eccf;
  --coral: #ff694a;
  --paper: #f4f0e7;
  --paper-deep: #e7e0d3;
  --white: #fffdf8;
  --text-muted: #5a6865;
  --line: rgba(10, 28, 29, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Rubik", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 240, 231, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 13px;
  font-weight: 500;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  min-height: min(880px, 100svh);
  padding-top: 140px;
  padding-bottom: 80px;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 84px);
}

.eyebrow,
.kicker {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 31px;
  height: 1px;
  background: var(--ink);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 9vw, 146px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.74;
}

.hero h1 em,
.contact-inner h2 em {
  color: var(--coral);
  font-weight: inherit;
}

.hero-intro {
  max-width: 580px;
  margin: 42px 0 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 14px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--coral);
  transform: translate(-3px, -3px);
}

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

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  top: 10px;
  right: 0;
  width: min(590px, 90%);
  aspect-ratio: 1;
  border-radius: 49% 51% 58% 42% / 35% 40% 60% 65%;
  background: var(--mint);
  content: "";
  transform: rotate(-7deg);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(10, 28, 29, 0.24);
  border-radius: 50%;
}

.orbit-one {
  top: 56px;
  right: 54px;
  width: 500px;
  height: 420px;
  transform: rotate(23deg);
}

.orbit-two {
  top: 89px;
  right: 88px;
  width: 430px;
  height: 350px;
  transform: rotate(-22deg);
}

.studio-window {
  position: absolute;
  top: 120px;
  right: 10px;
  width: min(590px, 94%);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 15px 17px 0 rgba(10, 28, 29, 0.12);
  transform: rotate(2deg);
}

.window-bar {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 6px;
  padding-inline: 14px;
  border-bottom: 1px solid var(--ink);
}

.window-bar span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.window-bar p {
  margin: 0 0 0 auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-content {
  display: grid;
  min-height: 325px;
  padding: 34px;
  grid-template-columns: 0.85fr 1.15fr;
}

.window-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mini-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.window-copy strong {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 57px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.code-lines {
  display: grid;
  width: 98px;
  gap: 6px;
  margin-top: auto;
}

.code-lines i {
  display: block;
  height: 3px;
  background: var(--teal);
}

.code-lines i:nth-child(2) {
  width: 70%;
}

.code-lines i:nth-child(3) {
  width: 88%;
}

.window-shape {
  position: relative;
  min-width: 0;
}

.shape-disc {
  position: absolute;
  top: 16px;
  right: 3px;
  width: 235px;
  max-width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.shape-card {
  position: absolute;
  right: 18px;
  bottom: 2px;
  width: 175px;
  height: 105px;
  border: 1px solid var(--ink);
  border-radius: 50% 50% 5px 5px;
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(10, 28, 29, 0.13) 8px 9px),
    var(--mint);
  transform: rotate(-8deg);
}

.phone-frame {
  position: absolute;
  z-index: 3;
  top: 244px;
  left: 1px;
  width: 177px;
  height: 351px;
  padding: 8px;
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 9px 10px 0 rgba(10, 28, 29, 0.18);
  transform: rotate(-5deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 50px;
  height: 5px;
  border-radius: 99px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 17px 18px;
  overflow: hidden;
  border-radius: 23px;
  background: var(--paper);
}

.phone-screen::after {
  width: 160px;
  height: 160px;
  margin: auto -15px -75px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.phone-screen img {
  width: 50px;
  height: 50px;
  margin-bottom: 35px;
}

.phone-screen span {
  font-size: 10px;
  text-transform: uppercase;
}

.phone-screen strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.phone-button {
  width: 68px;
  height: 20px;
  margin-top: 22px;
  border-radius: 99px;
  background: var(--coral);
}

.craft-note {
  position: absolute;
  right: 14px;
  bottom: 13px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(3deg);
}

.craft-note span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 23px;
}

.craft-note p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
}

.signal-strip {
  padding-block: 19px;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--coral);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track i {
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
}

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

.section {
  padding-block: clamp(100px, 12vw, 180px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.4fr 1.2fr 0.7fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 75px;
}

.section-heading h2,
.about-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(57px, 6.8vw, 100px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.85;
}

.section-heading > p:last-child {
  margin: 15px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.capability-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.capability-mobile {
  background: var(--mint);
}

.capability-web {
  background: var(--paper-deep);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-art {
  position: relative;
  height: 430px;
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(10, 28, 29, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(10, 28, 29, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.mobile-device {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 190px;
  height: 376px;
  border: 2px solid var(--ink);
  border-radius: 36px;
  background: var(--paper);
  box-shadow: 7px 8px 0 rgba(10, 28, 29, 0.2);
}

.mobile-back {
  background: var(--teal);
  transform: translateX(-93%) rotate(-12deg);
}

.mobile-back::before,
.mobile-back::after,
.mobile-back span {
  position: absolute;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.mobile-back::before {
  top: 20px;
  left: 18px;
  width: 35px;
  height: 35px;
}

.mobile-back::after {
  top: 59px;
  left: 18px;
  width: 35px;
  height: 35px;
}

.mobile-back span {
  top: 29px;
  left: 60px;
  width: 17px;
  height: 17px;
}

.mobile-front {
  overflow: hidden;
  transform: translateX(-8%) rotate(8deg);
}

.mobile-notch {
  width: 70px;
  height: 20px;
  margin: 8px auto 0;
  border-radius: 99px;
  background: var(--ink);
}

.mobile-ui {
  padding: 42px 18px 20px;
}

.mobile-ui > i {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 37px;
  border-radius: 50%;
  background: var(--coral);
}

.mobile-ui strong {
  display: block;
  margin-bottom: 35px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 0.95;
}

.mobile-ui span {
  display: block;
  height: 5px;
  margin-top: 10px;
  background: var(--ink);
}

.mobile-ui span:nth-of-type(2) {
  width: 80%;
}

.mobile-ui span:nth-of-type(3) {
  width: 60%;
}

.browser-art {
  height: 430px;
  padding: 54px 34px 0;
  border-bottom: 1px solid var(--ink);
  background: var(--coral);
}

.browser-chrome {
  display: flex;
  height: 33px;
  align-items: center;
  gap: 6px;
  padding-left: 13px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--paper);
}

.browser-chrome i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.browser-layout {
  display: grid;
  height: 345px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  grid-template-columns: 0.28fr 1fr;
}

.browser-sidebar {
  border-right: 1px solid var(--ink);
  background:
    linear-gradient(var(--teal) 0 0) 16px 26px / 38px 5px no-repeat,
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(10, 28, 29, 0.17) 31px 32px),
    var(--paper-deep);
}

.browser-main {
  position: relative;
  padding: 36px 31px;
}

.browser-main::after {
  position: absolute;
  right: -55px;
  bottom: -82px;
  width: 235px;
  height: 235px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.browser-main > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.browser-main strong {
  display: block;
  margin-top: 51px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 53px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.browser-main > div {
  display: flex;
  gap: 5px;
  margin-top: 45px;
}

.browser-main > div i {
  width: 43px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 99px;
}

.browser-main > div i:first-child {
  background: var(--coral);
}

.card-copy {
  padding: 28px 30px 34px;
}

.card-copy h3 {
  max-width: 430px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.card-copy p {
  max-width: 445px;
  margin: 0;
  color: rgba(10, 28, 29, 0.68);
  font-size: 14px;
}

.standards-section {
  padding-block: clamp(100px, 12vw, 170px);
  background: var(--ink);
  color: var(--white);
}

.section-heading-light {
  grid-template-columns: 0.4fr 1.9fr;
}

.section-heading-light .kicker {
  color: var(--mint);
}

.standards-grid {
  display: grid;
  border-top: 1px solid rgba(255, 253, 248, 0.3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.standard-card {
  position: relative;
  min-height: 420px;
  padding: 27px 26px 34px;
  border-right: 1px solid rgba(255, 253, 248, 0.3);
  border-bottom: 1px solid rgba(255, 253, 248, 0.3);
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.standard-card:first-child {
  border-left: 1px solid rgba(255, 253, 248, 0.3);
}

.standard-card:hover {
  background: var(--mint);
  color: var(--ink);
}

.standard-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.standard-icon {
  display: grid;
  width: 92px;
  height: 92px;
  margin-top: 55px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
}

.standard-card h3 {
  margin: 54px 0 10px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.standard-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  line-height: 1.65;
  transition: color 250ms ease;
}

.standard-card:hover p {
  color: rgba(10, 28, 29, 0.7);
}

.standard-pixel,
.standard-stack,
.standard-path {
  display: flex;
}

.standard-pixel {
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 3px;
  padding: 27px;
}

.standard-pixel i {
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
}

.standard-pixel i:first-child,
.standard-pixel i:last-child {
  background: var(--coral);
}

.standard-path {
  position: relative;
  align-items: center;
  justify-content: space-around;
  padding: 17px;
}

.standard-path::before {
  position: absolute;
  width: 50px;
  border-top: 1px dashed currentColor;
  content: "";
  transform: rotate(-23deg);
}

.standard-path i {
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--ink);
}

.standard-card:hover .standard-path i {
  background: var(--mint);
}

.standard-path i:nth-child(2) {
  transform: translateY(-13px);
}

.standard-stack {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.standard-stack i {
  width: 40px;
  height: 13px;
  margin-top: -4px;
  border: 1px solid currentColor;
  background: var(--ink);
  transform: skewY(-12deg);
}

.standard-card:hover .standard-stack i {
  background: var(--mint);
}

.about-section {
  display: grid;
  padding-block: clamp(110px, 14vw, 200px);
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
}

.about-index {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: space-between;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.about-stamp {
  position: relative;
  display: grid;
  width: 185px;
  height: 185px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.about-stamp::before {
  position: absolute;
  width: 139px;
  height: 139px;
  border: 1px dashed var(--ink);
  border-radius: 50%;
  content: "";
}

.about-stamp img {
  width: 88px;
  height: 88px;
}

.about-copy .kicker {
  margin-bottom: 38px;
}

.about-copy h2 {
  font-size: clamp(63px, 8vw, 118px);
}

.about-body {
  display: grid;
  max-width: 780px;
  margin-top: 65px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.about-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--mint);
}

.contact-inner {
  text-align: center;
}

.contact-inner .kicker {
  margin-bottom: 35px;
}

.contact-inner h2 {
  font-size: clamp(76px, 11vw, 165px);
  line-height: 0.77;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  margin-top: 68px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 40px);
  line-height: 1;
}

.contact-link span {
  font-family: var(--sans);
  font-size: 18px;
}

.site-footer {
  padding: 65px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 50px;
}

.brand-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-grid > div:first-child > p {
  margin: 17px 0 0;
  color: rgba(255, 253, 248, 0.56);
  font-family: var(--serif);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-links p {
  margin: 0 0 12px;
  color: rgba(255, 253, 248, 0.4);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  color: rgba(255, 253, 248, 0.42);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Policy and support pages */
.interior-page {
  background: var(--paper);
}

.interior-page .site-header {
  position: relative;
  border-bottom-color: var(--line);
}

.interior-page .site-nav {
  gap: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.back-link:hover {
  color: var(--teal);
}

.interior-hero {
  padding: clamp(70px, 9vw, 130px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--ink);
}

.interior-hero-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
  align-items: end;
}

.interior-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(67px, 10vw, 148px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.interior-hero h1 em {
  color: var(--coral);
  font-weight: inherit;
}

.interior-hero-copy {
  max-width: 560px;
  margin: 35px 0 0;
  color: var(--text-muted);
  font-size: 16px;
}

.policy-layout {
  display: grid;
  padding-block: 80px 120px;
  grid-template-columns: 265px minmax(0, 760px);
  gap: clamp(55px, 9vw, 130px);
  justify-content: center;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  padding-top: 9px;
}

.policy-toc > p {
  margin: 0 0 17px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-toc a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.policy-toc a:hover {
  color: var(--teal);
  padding-left: 5px;
}

.legal-section {
  scroll-margin-top: 30px;
  padding: 0 0 65px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 65px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.legal-section h3 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.legal-section p,
.legal-section li {
  color: #354846;
  font-size: 14px;
  line-height: 1.85;
}

.legal-section p {
  margin: 0 0 18px;
}

.legal-section ul {
  margin: 0 0 20px;
  padding-left: 19px;
}

.legal-section a,
.support-email {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(7, 93, 103, 0.35);
  text-underline-offset: 4px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  background: var(--paper-deep);
}

.legal-details {
  display: grid;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.legal-detail {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
  gap: 20px;
  font-size: 13px;
}

.legal-detail span:first-child {
  color: var(--text-muted);
}

.support-main {
  min-height: calc(100vh - 86px);
  padding-block: clamp(80px, 12vw, 170px);
}

.support-card {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--mint);
  grid-template-columns: 1.2fr 0.8fr;
}

.support-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 7vw, 95px);
}

.support-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(67px, 9vw, 130px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.support-copy > p:not(.kicker) {
  max-width: 460px;
  margin: 35px 0 0;
  color: #39514c;
}

.support-copy .button {
  margin-top: 35px;
}

.support-copy .support-email {
  margin-top: 18px;
  font-size: 13px;
}

.support-art {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--coral);
}

.support-art::before,
.support-art::after {
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.support-art::before {
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  background: var(--paper);
  transform: translate(-50%, -50%);
}

.support-art::after {
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  background: var(--teal);
  transform: translate(-50%, -50%);
}

.support-art img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 145px;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: var(--mint);
  text-align: center;
}

.error-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(120px, 25vw, 300px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.65;
}

.error-page p {
  margin: 35px 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 0.35fr 1.4fr;
  }

  .section-heading > p:last-child {
    max-width: 600px;
    grid-column: 2;
  }

  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standard-card:nth-child(3) {
    border-left: 1px solid rgba(255, 253, 248, 0.3);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 620px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .menu-button {
    z-index: 2;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 12px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
    place-content: center;
    gap: 6px;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 200ms ease;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 30px 50px;
    background: var(--mint);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

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

  .site-nav > a:not(.nav-cta) {
    font-family: var(--serif);
    font-size: clamp(45px, 12vw, 65px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .nav-cta {
    margin-top: 25px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 65px;
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(75px, 25vw, 120px);
  }

  .hero-intro {
    margin-top: 34px;
  }

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

  .hero-visual {
    min-height: 475px;
  }

  .hero-visual::before {
    top: 25px;
    width: 100%;
  }

  .studio-window {
    top: 80px;
    right: -11px;
    width: 95%;
  }

  .window-content {
    min-height: 255px;
    padding: 22px;
  }

  .window-copy strong {
    margin-top: 30px;
    font-size: 35px;
  }

  .shape-disc {
    width: 165px;
  }

  .shape-card {
    width: 125px;
    height: 75px;
  }

  .phone-frame {
    top: 210px;
    left: -3px;
    width: 135px;
    height: 268px;
    border-radius: 25px;
  }

  .phone-screen {
    padding: 34px 12px 15px;
  }

  .phone-screen img {
    width: 37px;
    height: 37px;
    margin-bottom: 26px;
  }

  .phone-screen strong {
    font-size: 21px;
  }

  .craft-note {
    right: 5px;
    bottom: 7px;
  }

  .orbit {
    display: none;
  }

  .section-heading,
  .section-heading-light {
    display: block;
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: clamp(54px, 16vw, 80px);
  }

  .section-heading > p:last-child {
    margin-top: 30px;
  }

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

  .mobile-art,
  .browser-art {
    height: 350px;
  }

  .mobile-device {
    width: 158px;
    height: 315px;
  }

  .browser-art {
    padding: 43px 20px 0;
  }

  .browser-layout {
    height: 280px;
  }

  .browser-main {
    padding: 27px 20px;
  }

  .browser-main strong {
    margin-top: 38px;
    font-size: 34px;
  }

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

  .standard-card,
  .standard-card:nth-child(3) {
    min-height: 350px;
    border-left: 1px solid rgba(255, 253, 248, 0.3);
  }

  .standard-icon {
    margin-top: 35px;
  }

  .standard-card h3 {
    margin-top: 38px;
  }

  .about-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
  }

  .about-copy h2 {
    font-size: clamp(60px, 18vw, 88px);
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 45px;
  }

  .about-index {
    min-height: auto;
    flex-direction: row;
    align-items: flex-end;
  }

  .about-stamp {
    width: 130px;
    height: 130px;
  }

  .about-stamp::before {
    width: 100px;
    height: 100px;
  }

  .about-stamp img {
    width: 62px;
    height: 62px;
  }

  .contact-inner h2 {
    font-size: clamp(70px, 22vw, 110px);
  }

  .contact-link {
    max-width: 100%;
    gap: 15px;
    margin-top: 50px;
    overflow-wrap: anywhere;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .interior-page .site-nav {
    display: none;
  }

  .interior-hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .interior-hero h1 {
    font-size: clamp(65px, 21vw, 105px);
  }

  .policy-layout {
    padding-top: 55px;
    gap: 55px;
  }

  .policy-toc {
    position: static;
  }

  .legal-detail {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .support-card {
    grid-template-columns: 1fr;
  }

  .support-art {
    min-height: 350px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 425px;
  }

  .studio-window {
    top: 55px;
  }

  .window-content {
    min-height: 225px;
    padding: 18px;
  }

  .window-copy strong {
    font-size: 29px;
  }

  .shape-disc {
    width: 130px;
  }

  .shape-card {
    width: 100px;
    height: 64px;
  }

  .phone-frame {
    top: 185px;
    width: 116px;
    height: 232px;
  }

  .phone-screen strong {
    font-size: 18px;
  }

  .phone-screen::after {
    width: 125px;
    height: 125px;
  }

  .craft-note {
    display: none;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
