:root {
  --graphite: #121416;
  --graphite-soft: #1a1d1f;
  --mist: #f1f4ef;
  --paper: #fbfcf9;
  --leaf: #8fcb55;
  --leaf-soft: #dcefc9;
  --steel: #6e7c76;
  --line: rgba(18, 20, 22, 0.14);
  --line-light: rgba(241, 244, 239, 0.16);
  --page: 1240px;
  --radius: 22px;
  --radius-small: 12px;
  --shadow: 0 28px 80px rgba(18, 20, 22, 0.13);
  --ease: cubic-bezier(0.22, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--mist);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

figure,
p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.page-width {
  width: min(var(--page), calc(100% - 64px));
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 244, 239, 0.92);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.nav-open .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

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

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-toggle {
  justify-self: end;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: rgba(18, 20, 22, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--graphite);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--leaf);
}

.eyebrow-light {
  color: rgba(241, 244, 239, 0.6);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 22px;
}

.button {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--mist);
  background: var(--graphite);
}

.button-primary:hover {
  background: #272b2d;
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.button-quiet:hover {
  border-color: rgba(18, 20, 22, 0.35);
  background: var(--paper);
}

.button-leaf {
  color: var(--graphite);
  background: var(--leaf);
}

.button-leaf:hover {
  background: #a2d66f;
}

.button-outline-light {
  color: var(--mist);
  border-color: rgba(241, 244, 239, 0.68);
  background: transparent;
}

a.button-outline-light:hover {
  color: var(--graphite);
  background: var(--mist);
  border-color: var(--mist);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(18, 20, 22, 0.3);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link:hover {
  border-color: var(--leaf);
}

.text-link-light {
  color: var(--mist);
  border-color: rgba(241, 244, 239, 0.32);
}

.brand-hero {
  min-height: 700px;
  padding-block: 76px 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 0.86fr);
  align-items: center;
  gap: 74px;
}

.brand-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 5.5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.072em;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 14px;
  color: rgba(18, 20, 22, 0.68);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-support {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(18, 20, 22, 0.68);
  font-size: 1rem;
}

.brand-stage {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--mist);
  background: var(--graphite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-stage > img {
  position: absolute;
  width: min(64%, 370px);
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.22));
}

.brand-stage > p {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  margin: 0;
  color: rgba(241, 244, 239, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: nowrap;
}

.stage-chip {
  position: absolute;
  top: 34px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.chip-one {
  left: 34px;
  color: var(--graphite);
  background: var(--leaf);
}

.chip-two {
  right: 34px;
  color: var(--mist);
  background: rgba(241, 244, 239, 0.08);
  border: 1px solid rgba(241, 244, 239, 0.22);
}

.signal-bar {
  border-block: 1px solid var(--line);
}

.signal-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.signal-inner span {
  min-height: 38px;
  padding-inline: 24px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: rgba(18, 20, 22, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.signal-inner span:first-child {
  padding-left: 0;
}

.signal-inner span:last-child {
  padding-right: 0;
  border-right: 0;
}

.content-section {
  padding-block: 140px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(360px, 1.12fr) minmax(300px, 0.76fr);
  gap: 42px;
  align-items: start;
}

.split-heading h2,
.section-title h2,
.credibility-heading h2,
.contact-band h2,
.family-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.3vw, 4.6rem);
  font-weight: 690;
}

.split-heading > p:last-child {
  color: rgba(18, 20, 22, 0.64);
  font-size: 1.02rem;
}

.value-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 220px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.22);
}

.value-card-accent {
  background: var(--leaf-soft);
  border-color: rgba(143, 203, 85, 0.45);
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.value-card p {
  margin: 0;
  color: rgba(18, 20, 22, 0.64);
}

.featured-wrap {
  padding-block: 108px;
  color: var(--mist);
  background: var(--graphite);
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(350px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 80px;
}

.status-pill {
  margin-bottom: 28px;
  padding: 7px 12px;
  display: inline-flex;
  color: var(--leaf);
  border: 1px solid rgba(143, 203, 85, 0.3);
  border-radius: 999px;
  background: rgba(143, 203, 85, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-pill-dark {
  color: #4c771e;
  background: var(--leaf-soft);
}

.featured-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 680;
}

.featured-copy > p:not(.eyebrow, .featured-lede) {
  color: rgba(241, 244, 239, 0.62);
}

.featured-lede {
  margin-bottom: 18px;
  color: var(--mist);
  font-size: 1.35rem;
  line-height: 1.35;
}

.featured-copy .button-row {
  margin-top: 34px;
}

.featured-visual {
  position: relative;
  min-height: 650px;
}

.window-frame {
  overflow: hidden;
  background: #232628;
  border: 1px solid rgba(241, 244, 239, 0.15);
  border-radius: 15px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
}

.window-bar {
  height: 38px;
  padding-inline: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(241, 244, 239, 0.5);
  background: #1a1c1e;
  border-bottom: 1px solid rgba(241, 244, 239, 0.1);
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(241, 244, 239, 0.28);
}

.window-bar > span:nth-child(3) {
  background: var(--leaf);
}

.window-bar small {
  margin-left: 6px;
  overflow: hidden;
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-frame img {
  width: 100%;
  object-fit: cover;
}

.window-large {
  position: absolute;
  width: 91%;
  top: 42px;
  right: 0;
  transform: rotate(1.2deg);
}

.window-large img {
  max-height: 560px;
  object-position: top;
}

.phone-frame {
  overflow: hidden;
  background: #0d0f10;
  border: 7px solid #272b2d;
  border-radius: 31px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.phone-frame img {
  width: 100%;
}

.product-phone {
  position: absolute;
  width: 185px;
  right: 0;
  bottom: 0;
  transform: rotate(2.5deg);
}

.principles-section {
  padding-bottom: 120px;
}

.principle-list {
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.principle-list article {
  padding: 29px 0;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) 1fr;
  gap: 45px;
  border-bottom: 1px solid var(--line);
}

.principle-list h3 {
  margin: 0;
  font-size: 1.55rem;
}

.principle-list p {
  max-width: 640px;
  margin: 0;
  color: rgba(18, 20, 22, 0.63);
}

.used-by-section {
  padding-block: 80px 90px;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.used-by-heading {
  margin-bottom: 34px;
}

.used-by-heading .eyebrow {
  margin: 0;
  text-align: center;
}

.used-by-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.used-by-track {
  width: max-content;
  display: flex;
  animation: used-by-scroll 42s linear infinite;
}

.used-by-group {
  padding-right: 22px;
  display: flex;
  flex-shrink: 0;
  gap: 22px;
}

.used-by-icon {
  width: 112px;
  height: 112px;
  padding: 7px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 20, 22, 0.11);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(18, 20, 22, 0.11);
}

.used-by-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@keyframes used-by-scroll {
  to {
    transform: translateX(-50%);
  }
}

.credibility-section {
  padding-block: 120px;
  color: var(--mist);
  background: var(--graphite-soft);
}

.credibility-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.credibility-heading .eyebrow {
  flex: 0 0 auto;
}

.testimonial-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonial-grid blockquote {
  min-height: 240px;
  margin: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-small);
  background: rgba(241, 244, 239, 0.025);
}

.testimonial-grid blockquote p {
  margin: 0;
  color: rgba(241, 244, 239, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonial-grid blockquote footer {
  margin: 0;
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-band {
  padding-block: 120px;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.contact-band > div:last-child > p {
  margin-bottom: 26px;
  color: rgba(18, 20, 22, 0.64);
}

.site-footer {
  padding-top: 68px;
  color: var(--mist);
  background: var(--graphite);
}

.footer-main {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 0.62fr 1.2fr auto;
  align-items: center;
  gap: 50px;
}

.brand-footer {
  color: var(--mist);
}

.footer-main > p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(241, 244, 239, 0.5);
  text-align: center;
}

.footer-main nav {
  display: flex;
  gap: 30px;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-main nav a:hover {
  color: var(--leaf);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(241, 244, 239, 0.38);
  border-top: 1px solid var(--line-light);
  font-size: 0.72rem;
}

/* Shared interior pages */

.page-hero {
  min-height: 390px;
  padding-block: 88px 82px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr);
  gap: 90px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3.7rem, 6vw, 6.4rem);
  font-weight: 680;
}

.page-hero-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.page-hero-copy p {
  max-width: 720px;
  margin-bottom: 10px;
  color: rgba(18, 20, 22, 0.65);
  font-size: 1.04rem;
}

.page-hero-copy p:last-child {
  margin-bottom: 0;
}

.catalog-section {
  padding-block: 100px 130px;
}

.catalog-product {
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  color: var(--mist);
  background: var(--graphite);
  border-radius: var(--radius);
}

.catalog-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-type {
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.catalog-lede {
  color: rgba(241, 244, 239, 0.64);
  font-size: 1.12rem;
}

.feature-ticks {
  padding: 0;
  list-style: none;
}

.feature-ticks li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(241, 244, 239, 0.13);
  color: rgba(241, 244, 239, 0.7);
  font-size: 0.9rem;
}

.feature-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 900;
}

.catalog-visual {
  align-self: center;
}

.catalog-visual .window-frame img {
  max-height: 570px;
  object-fit: cover;
  object-position: top;
}

.catalog-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(241, 244, 239, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.family-section {
  padding-block: 100px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 100px;
  border-block: 1px solid var(--line);
}

.family-section > p {
  align-self: end;
  color: rgba(18, 20, 22, 0.64);
}

/* About */

.about-story {
  color: var(--mist);
  background: var(--graphite);
}

.about-story-inner {
  min-height: 700px;
  padding-block: 100px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 100px;
}

.about-mark {
  min-height: 480px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(241, 244, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 244, 239, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.about-mark img {
  width: 68%;
}

.about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
}

.about-copy p:not(.eyebrow) {
  color: rgba(241, 244, 239, 0.62);
  font-size: 1.05rem;
}

.approach-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.approach-grid article {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-grid article:nth-child(2n) {
  border-right: 0;
}

.approach-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.approach-grid article > span {
  display: block;
  margin-bottom: 65px;
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach-grid h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.approach-grid p {
  margin: 0;
  color: rgba(18, 20, 22, 0.62);
}

.manifesto-section {
  padding-block: 120px;
  color: var(--mist);
  background: var(--graphite-soft);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1fr);
  grid-template-areas:
    "label content"
    "heading content";
  gap: 20px 90px;
  align-items: start;
}

.manifesto-inner > .eyebrow {
  grid-area: label;
}

.manifesto-inner h2 {
  grid-area: heading;
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}

.manifesto-columns {
  grid-area: content;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(241, 244, 239, 0.6);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(241, 244, 239, 0.035);
}

.manifesto-columns p {
  margin: 0;
  font-size: 1.04rem;
}

.manifesto-columns .button {
  align-self: flex-start;
  margin-top: 14px;
}

/* Contact */

.contact-section {
  padding-block: 110px 130px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact-details h2 {
  max-width: 570px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

.contact-details > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(18, 20, 22, 0.64);
}

.mail-link {
  margin-top: 42px;
  padding-bottom: 8px;
  display: inline-flex;
  gap: 16px;
  border-bottom: 2px solid var(--leaf);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.contact-form {
  padding: 38px;
  color: var(--mist);
  background: var(--graphite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  margin: 0 0 8px;
  display: block;
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 23px;
  padding: 14px 15px;
  color: var(--mist);
  border: 1px solid rgba(241, 244, 239, 0.24);
  border-radius: 10px;
  outline: none;
  background: rgba(241, 244, 239, 0.055);
  font: inherit;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--leaf);
  background: rgba(241, 244, 239, 0.08);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(241, 244, 239, 0.48);
  font-size: 0.78rem;
}

/* Product page */

.product-page {
  background: var(--paper);
}

.product-header {
  color: var(--mist);
  background: rgba(18, 20, 22, 0.94);
  border-color: var(--line-light);
}

.product-header .site-nav a {
  color: rgba(241, 244, 239, 0.68);
}

.product-header .site-nav a:hover,
.product-header .site-nav a[aria-current="page"] {
  color: var(--mist);
}

.product-hero {
  padding-block: 92px 110px;
  overflow: hidden;
  color: var(--mist);
  background: var(--graphite);
}

.product-hero-inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(410px, 0.83fr) minmax(0, 1.17fr);
  align-items: center;
  gap: 70px;
}

.product-hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 6.4vw, 6.7rem);
}

.product-hero-tagline {
  margin-bottom: 18px;
  color: var(--leaf);
  font-size: 1.4rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.product-hero-copy > p:not(.eyebrow, .product-hero-tagline) {
  max-width: 620px;
  color: rgba(241, 244, 239, 0.6);
}

.product-hero-copy .button-row {
  margin-top: 34px;
}

.product-signals {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  color: rgba(241, 244, 239, 0.5);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-signals span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--leaf);
}

.product-hero-visual {
  position: relative;
  min-height: 650px;
}

.product-main-window {
  position: absolute;
  width: 95%;
  left: 0;
  top: 46px;
  transform: rotate(1deg);
}

.product-main-window img {
  max-height: 560px;
  object-position: top;
}

.product-main-phone {
  position: absolute;
  width: 185px;
  right: 0;
  bottom: 0;
  transform: rotate(2.5deg);
}

.product-thesis {
  padding-block: 120px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.product-thesis h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
}

.product-thesis > div:last-child {
  align-self: end;
  color: rgba(18, 20, 22, 0.64);
  font-size: 1.04rem;
}

.pillar-section {
  padding-block: 115px;
  background: var(--mist);
}

.section-title {
  max-width: 820px;
}

.section-title h2 {
  margin-bottom: 20px;
}

.section-title > p:last-child {
  color: rgba(18, 20, 22, 0.62);
}

.product-pillars {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-pillars article {
  min-height: 460px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
}

.product-pillars h3 {
  font-size: 1.65rem;
}

.product-pillars p {
  color: rgba(18, 20, 22, 0.63);
}

.product-pillars ul {
  padding-left: 18px;
  color: rgba(18, 20, 22, 0.68);
  font-size: 0.86rem;
}

.product-pillars li {
  margin-bottom: 8px;
}

.product-story {
  padding-block: 130px;
}

.story-row {
  min-height: 600px;
  margin-bottom: 130px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.story-row:last-child {
  margin-bottom: 0;
}

.story-row-reverse .story-copy {
  order: 2;
}

.story-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
}

.story-copy > p:not(.eyebrow) {
  color: rgba(18, 20, 22, 0.63);
}

.story-copy .feature-ticks {
  margin-top: 28px;
}

.story-copy .feature-ticks li {
  border-color: var(--line);
  color: rgba(18, 20, 22, 0.7);
}

.story-visual {
  min-height: 560px;
  padding: 48px;
  display: grid;
  place-items: center;
  background: var(--graphite);
  border-radius: var(--radius);
}

.story-visual .window-frame {
  width: 100%;
}

.story-visual .window-frame img {
  max-height: 500px;
  object-fit: cover;
  object-position: top;
}

.story-visual-phone .phone-frame,
.story-visual-demo .phone-frame {
  width: 210px;
}

.story-visual-phone {
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 203, 85, 0.28), transparent 40%),
    var(--graphite);
}

.story-visual-demo {
  background: var(--leaf-soft);
}

.story-visual-demo .phone-frame {
  border-color: var(--graphite);
}

.feature-snapshot {
  padding-block: 120px;
  color: var(--mist);
  background: var(--graphite-soft);
}

.feature-snapshot .section-title > p:last-child {
  color: rgba(241, 244, 239, 0.58);
}

.snapshot-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-light);
}

.snapshot-grid article {
  padding: 34px;
  border-right: 1px solid var(--line-light);
}

.snapshot-grid article:last-child {
  border: 0;
}

.snapshot-grid h3 {
  margin-bottom: 30px;
  color: var(--leaf);
  font-size: 1.45rem;
}

.snapshot-grid ul {
  padding: 0;
  list-style: none;
}

.snapshot-grid li {
  padding-block: 11px;
  border-bottom: 1px solid rgba(241, 244, 239, 0.1);
  color: rgba(241, 244, 239, 0.66);
  font-size: 0.88rem;
}

.faq-section {
  padding-block: 130px;
}

.faq-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-grid details {
  min-height: 94px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--mist);
}

.faq-grid summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  color: var(--steel);
  font-size: 1.4rem;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  padding: 0 0 24px;
  color: rgba(18, 20, 22, 0.63);
}

.product-cta {
  padding-block: 110px;
  color: var(--mist);
  background: var(--graphite);
}

.product-cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
  align-items: end;
}

.product-cta h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.product-cta-inner > div:last-child > p {
  color: rgba(241, 244, 239, 0.58);
}

.product-cta-inner .button-row {
  margin-top: 30px;
}

.product-footer {
  border-top: 1px solid var(--line-light);
}

/* Privacy */

.legal-section {
  max-width: 900px;
  padding-block: 95px 125px;
}

.legal-section article {
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-section article:first-child {
  padding-top: 0;
}

.legal-section article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}

.legal-section p {
  color: rgba(18, 20, 22, 0.68);
}

.legal-section a {
  border-bottom: 1px solid var(--leaf);
  font-weight: 700;
}

[data-asset-store-product]:not([href]) {
  cursor: default;
}

@media (max-width: 1100px) {
  .brand-hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 42px;
  }

  .brand-stage {
    min-height: 520px;
  }

  .split-heading {
    grid-template-columns: 150px 1fr;
  }

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

  .featured-product,
  .catalog-product,
  .product-hero-inner {
    gap: 45px;
  }

  .featured-visual {
    min-height: 580px;
  }

  .testimonial-grid blockquote {
    padding: 28px;
  }

  .story-row {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .page-width {
    width: min(var(--page), calc(100% - 40px));
  }

  .brand-hero {
    padding-block: 72px;
    grid-template-columns: 1fr;
  }

  .brand-hero-copy h1 {
    max-width: 800px;
  }

  .brand-stage {
    min-height: 560px;
  }

  .signal-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-inner span:nth-child(2) {
    border-right: 0;
  }

  .signal-inner span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .value-grid,
  .product-pillars,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 270px;
  }

  .featured-product,
  .catalog-product,
  .about-story-inner,
  .product-hero-inner {
    grid-template-columns: 1fr;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "heading"
      "content";
    gap: 18px;
  }

  .manifesto-columns {
    margin-top: 24px;
  }

  .featured-visual,
  .product-hero-visual {
    min-height: 610px;
  }

  .window-large,
  .product-main-window {
    width: 92%;
    right: 0;
  }

  .testimonial-grid,
  .contact-band,
  .family-section,
  .contact-section,
  .product-thesis,
  .product-cta-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story-inner {
    gap: 60px;
  }

  .about-mark {
    min-height: 440px;
  }

  .product-hero-inner {
    min-height: 0;
  }

  .product-main-window {
    right: auto;
  }

  .story-row {
    grid-template-columns: 1fr;
    margin-bottom: 95px;
  }

  .story-row-reverse .story-copy {
    order: 0;
  }

  .story-visual {
    min-height: 520px;
  }

  .snapshot-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .snapshot-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .page-width {
    width: min(var(--page), calc(100% - 30px));
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--mist);
    background: var(--graphite);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a,
  .product-header .site-nav a {
    padding: 22px 0;
    color: var(--mist);
    border-bottom: 1px solid var(--line-light);
    font-size: 1.4rem;
  }

  .site-nav a::after {
    display: none;
  }

  .product-header .nav-toggle {
    border-color: var(--line-light);
  }

  .brand-hero {
    min-height: 0;
    padding-block: 62px 70px;
  }

  .brand-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .product-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    letter-spacing: -0.065em;
  }

  .brand-stage {
    min-height: 460px;
  }

  .brand-stage > p {
    left: 24px;
    right: 24px;
    bottom: 22px;
  }

  .stage-chip {
    top: 24px;
  }

  .chip-one {
    left: 24px;
  }

  .chip-two {
    right: 24px;
  }

  .used-by-section {
    padding-block: 66px 76px;
  }

  .used-by-icon {
    width: 98px;
    height: 98px;
    border-radius: 23px;
  }

  .used-by-icon img {
    border-radius: 17px;
  }

  .content-section,
  .credibility-section,
  .manifesto-section,
  .pillar-section,
  .feature-snapshot,
  .faq-section {
    padding-block: 88px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-heading > p:last-child {
    grid-column: auto;
  }

  .split-heading h2,
  .section-title h2,
  .credibility-heading h2,
  .contact-band h2,
  .family-section h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .value-grid,
  .principle-list,
  .testimonial-grid {
    margin-top: 48px;
  }

  .value-card {
    min-height: 245px;
    padding: 26px;
  }

  .featured-wrap {
    padding-block: 82px;
  }

  .featured-product {
    gap: 45px;
  }

  .featured-copy h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .featured-visual,
  .product-hero-visual {
    min-height: 470px;
  }

  .window-large,
  .product-main-window {
    top: 24px;
    width: 96%;
  }

  .product-phone,
  .product-main-phone {
    width: 128px;
  }

  .principle-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .credibility-heading {
    display: block;
  }

  .contact-band {
    padding-block: 90px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .page-hero {
    min-height: 0;
    padding-block: 70px 62px;
  }

  .catalog-section {
    padding-block: 70px 90px;
  }

  .catalog-product {
    padding: 28px;
    gap: 45px;
  }

  .catalog-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .family-section {
    padding-block: 75px;
  }

  .about-story-inner {
    padding-block: 75px;
  }

  .about-mark {
    min-height: 360px;
  }

  .about-copy h2,
  .manifesto-inner h2,
  .product-thesis h2,
  .story-copy h2,
  .product-cta h2 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

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

  .approach-grid article {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .approach-grid article:last-child {
    border-bottom: 0;
  }

  .manifesto-columns,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-columns {
    padding: 30px;
  }

  .contact-section {
    padding-block: 76px 90px;
  }

  .contact-form {
    padding: 27px;
  }

  .product-hero {
    padding-block: 70px 80px;
  }

  .product-thesis,
  .product-story {
    padding-block: 88px;
  }

  .product-pillars {
    margin-top: 45px;
  }

  .product-pillars article {
    min-height: 0;
  }

  .story-row {
    min-height: 0;
    margin-bottom: 78px;
  }

  .story-visual {
    min-height: 420px;
    padding: 25px;
  }

  .story-visual-phone .phone-frame,
  .story-visual-demo .phone-frame {
    width: 165px;
  }

  .product-cta {
    padding-block: 85px;
  }
}

@media (max-width: 480px) {
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    align-self: flex-start;
  }

  .brand-stage {
    min-height: 430px;
  }

  .brand-stage > img {
    width: 72%;
  }

  .brand-stage > p {
    font-size: 0.78rem;
  }

  .stage-chip {
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .used-by-heading {
    margin-bottom: 26px;
  }

  .used-by-group {
    padding-right: 16px;
    gap: 16px;
  }

  .used-by-icon {
    width: 84px;
    height: 84px;
    padding: 5px;
    border-radius: 20px;
  }

  .used-by-icon img {
    border-radius: 15px;
  }

  .signal-inner {
    grid-template-columns: 1fr;
  }

  .signal-inner span {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-inner span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .signal-inner span:last-child {
    border-bottom: 0;
  }

  .featured-visual,
  .product-hero-visual {
    min-height: 380px;
  }

  .product-phone,
  .product-main-phone {
    width: 105px;
    border-width: 4px;
    border-radius: 20px;
  }

  .window-bar {
    height: 30px;
  }

  .testimonial-grid blockquote {
    min-height: 260px;
    padding: 25px;
  }

  .catalog-product {
    padding: 22px;
  }

  .catalog-copy .button {
    font-size: 0.78rem;
  }

  .mail-link {
    font-size: 1.08rem;
  }

  .story-visual {
    min-height: 350px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .used-by-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .used-by-track {
    animation: none;
  }

  .used-by-group[aria-hidden="true"] {
    display: none;
  }
}
