.page-contact {
  --pc-panel: var(--panel);
  --pc-layer: var(--layer);
  --pc-stroke: var(--stroke);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

.page-contact__crumb {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
}

.page-contact .contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--violet);
}

.page-contact .contact-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--green);
}

.page-contact .contact-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--white);
}

.page-contact .contact-lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

/* ------- HERO ------- */

.contact-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter) 64px;
}

.contact-hero__media {
  position: relative;
  margin: 0 0 36px;
  overflow: hidden;
  border: 1px solid var(--pc-stroke);
  background: var(--pc-panel);
  box-shadow: 10px 10px 0 0 rgba(46, 54, 68, 0.45);
}

.contact-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: contrast(1.06) brightness(0.66) saturate(1.08);
}

.contact-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.15) 0%, rgba(7, 9, 13, 0.85) 100%);
  pointer-events: none;
}

.contact-hero__body {
  max-width: 1000px;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8.4vw, 96px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 14px 0 22px;
  color: var(--white);
}

.contact-hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.78;
  max-width: 64ch;
  color: var(--white);
  margin: 0 0 32px;
}

.contact-hero__facts {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border-top: 1px solid var(--pc-stroke);
  border-left: 1px solid var(--pc-stroke);
}

.contact-hero__facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-right: 1px solid var(--pc-stroke);
  border-bottom: 1px solid var(--pc-stroke);
}

.contact-hero__facts dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

.contact-hero__facts dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
  color: var(--green);
}

/* ------- CHANNELS ------- */

.contact-channels {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter) 72px;
}

.contact-channels__head {
  margin-bottom: 36px;
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 22px 24px;
  background: var(--pc-panel);
  border: 1px solid var(--pc-stroke);
  box-shadow: 8px 8px 0 0 rgba(46, 54, 68, 0.5);
}

.channel-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 22px;
  right: 22px;
  height: 3px;
  background: var(--violet);
}

.channel-card--mail {
  background: linear-gradient(158deg, rgba(53, 240, 138, 0.08) 0%, var(--pc-panel) 58%);
}

.channel-card--mail::before {
  background: var(--green);
}

.channel-card--addr {
  background: linear-gradient(158deg, rgba(123, 92, 255, 0.08) 0%, var(--pc-panel) 58%);
}

.channel-card__tag {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--muted);
}

.channel-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.channel-card__value {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--green);
  word-break: break-all;
  user-select: all;
}

.channel-card--phone .channel-card__value {
  color: var(--white);
}

.channel-card--addr .channel-card__value {
  font-family: var(--font-body);
  font-size: 17px;
  letter-spacing: 0;
  color: var(--white);
  user-select: text;
}

.channel-card__desc {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.72;
  color: var(--white);
}

.channel-card__meta {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--pc-stroke);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ------- INTENTS ------- */

.contact-intents {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter) 72px;
}

.contact-intents__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.contact-intents__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--pc-stroke);
  background: var(--pc-panel);
}

.contact-intents__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.78) saturate(0.9);
}

.intent-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 32px;
}

.intent-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 14px;
  background: var(--pc-layer);
  border: 1px solid var(--pc-stroke);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
}

.intent-tab__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  flex-shrink: 0;
}

.intent-tab:hover,
.intent-tab:focus-visible {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--white);
  outline: none;
}

.intent-tab:hover .intent-tab__num,
.intent-tab:focus-visible .intent-tab__num {
  color: var(--white);
}

.intent-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.intent-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 26px 22px;
  background: var(--pc-panel);
  border: 1px solid var(--pc-stroke);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.intent-card__lead {
  min-width: 0;
}

.intent-card__tag {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.intent-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
}

.intent-card__lead p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.intent-card__lead p:last-child {
  margin-bottom: 0;
}

.intent-card__prep {
  background: var(--pc-layer);
  border-left: 3px solid var(--violet);
  padding: 20px 18px;
}

.intent-card__prep-label {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--green);
}

.intent-card__prep ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.intent-card__prep li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--white);
}

.intent-card__prep li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 2px;
  background: var(--green);
}

/* ------- RHYTHM ------- */

.contact-rhythm {
  background: var(--pc-layer);
  border-top: 1px solid var(--pc-stroke);
  border-bottom: 1px solid var(--pc-stroke);
  padding: 56px 0;
}

.contact-rhythm__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rhythm-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.rhythm-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--pc-stroke);
}

.rhythm-steps li:last-child {
  border-bottom: 1px solid var(--pc-stroke);
}

.rhythm-steps__num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}

.rhythm-steps h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}

.rhythm-steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 46ch;
}

/* ------- CHECKLIST ------- */

.contact-checklist {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.contact-checklist__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.todo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--pc-stroke);
}

.todo {
  border-bottom: 1px solid var(--pc-stroke);
}

.todo__label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 4px;
  cursor: pointer;
}

.todo__box {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  background: var(--black);
  border: 1px solid var(--pc-stroke);
  cursor: pointer;
  transition: background 0.18s ease-out, border-color 0.18s ease-out;
}

.todo__box:checked {
  background: var(--green);
  border-color: var(--green);
}

.todo__box:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.todo__box:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.todo__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white);
  transition: color 0.18s ease-out;
}

.todo__box:checked + .todo__text {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--muted);
}

/* ------- CORRECTION ------- */

.contact-correction {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px var(--gutter) 72px;
}

.contact-correction__head {
  margin-bottom: 28px;
}

.correction-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.correction-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--pc-stroke);
}

.correction-list li:last-child {
  border-bottom: 1px solid var(--pc-stroke);
}

.correction-list__k {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}

.correction-list h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}

.correction-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 46ch;
}

.contact-correction__foot {
  margin: 28px 0 0;
  padding: 18px 20px;
  background: var(--pitch);
  border-left: 3px solid var(--green);
  font-size: 14px;
  line-height: 1.72;
  color: var(--white);
  max-width: 68ch;
}

/* ------- PARTNERSHIP ------- */

.contact-partnership {
  background: var(--pc-panel);
  border-top: 1px solid var(--pc-stroke);
  border-bottom: 1px solid var(--pc-stroke);
  padding: 56px 0;
}

.contact-partnership__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.partnership-grid article {
  padding: 24px 20px;
  background: var(--pc-layer);
  border: 1px solid var(--pc-stroke);
}

.partnership-grid article h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
}

.partnership-grid article ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partnership-grid article li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--white);
}

.partnership-grid article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 2px;
  background: var(--violet);
}

.partnership-grid article p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.partnership-grid article p:last-child {
  margin-bottom: 0;
}

/* ------- OUTRO ------- */

.contact-outro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter) 96px;
}

.contact-outro__inner {
  position: relative;
  padding: 40px 24px;
  border: 1px solid var(--green);
  background: linear-gradient(140deg, rgba(53, 240, 138, 0.09) 0%, rgba(7, 9, 13, 0) 62%);
}

.contact-outro__inner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 88px;
  height: 3px;
  background: var(--green);
}

.contact-outro__q {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
}

.contact-outro__desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 58ch;
}

.contact-outro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-outro__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
}

/* ------- RESPONSIVE ------- */

@media (min-width: 720px) {
  .contact-hero {
    padding: 32px var(--gutter) 80px;
  }

  .contact-hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .intent-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .channel-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .contact-intents__head {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: 48px;
  }

  .contact-intents__media {
    justify-self: end;
    width: 100%;
    max-width: 360px;
  }

  .intent-card {
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    padding: 34px 30px;
  }

  .intent-card__prep {
    padding: 24px 22px;
  }

  .rhythm-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 28px;
  }

  .rhythm-steps li {
    border-bottom: 1px solid var(--pc-stroke);
  }

  .contact-checklist__grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
  }

  .correction-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--pc-stroke);
    border-bottom: 1px solid var(--pc-stroke);
  }

  .correction-list li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 24px 26px 0;
    border-top: 0;
    border-right: 1px solid var(--pc-stroke);
  }

  .correction-list li:last-child {
    border-bottom: 0;
    border-right: 0;
  }

  .correction-list li:nth-child(2) {
    padding-left: 24px;
  }

  .partnership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .contact-outro__inner {
    padding: 56px 48px;
  }
}

@media (min-width: 1080px) {
  .contact-channels__grid {
    grid-template-columns: 5fr 4fr 3fr;
  }

  .channel-card:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .todo__box,
  .todo__text,
  .intent-tab {
    transition: none;
  }
}
<<<END>>>
