@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}
:root {
  --bg: #11110f;
  --surface: #1a1a18;
  --surface-2: #22221f;
  --line: #353530;
  --text: #f3f1eb;
  --muted: #b8b5ac;
  --orange: #ff5b35;
  --orange-dark: #a92b17;
  --cream: #ded9cc;
  --green: #77d69d;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.ambient span {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.09;
  background: var(--orange);
}
.ambient span:first-child {
  top: -340px;
  left: -180px;
}
.ambient span:last-child {
  right: -320px;
  bottom: -380px;
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  gap: 42px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px 4px 10px 4px;
  background: var(--orange);
  color: white;
  font-size: 19px;
  box-shadow: 0 8px 22px rgba(255, 91, 53, 0.2);
}
.site-header nav {
  display: flex;
  gap: 30px;
}
.site-header nav a,
.header-contact {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.header-contact:hover {
  color: var(--text);
}
.site-header nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}
.language-switch {
  width: 38px;
  height: 38px;
  display: grid;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.language-switch:hover {
  border-color: var(--orange);
  background: rgba(255, 91, 53, 0.08);
  color: var(--text);
}
.header-contact {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--text);
}
.contact-short {
  display: none;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 112px;
  gap: 14px;
}
.tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s,
    box-shadow 0.22s;
}
.kicker {
  margin: 0;
  color: #aaa79f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.identity-card {
  grid-column: 1 / span 5;
  grid-row: 1 / span 5;
  background: linear-gradient(145deg, #20201d, #181816);
}
.identity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(243, 241, 235, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 241, 235, 0.085) 1px, transparent 1px),
    linear-gradient(
      90deg,
      transparent 0 82px,
      rgba(255, 91, 53, 0.24) 82px 83px,
      transparent 83px
    );
  background-size:
    28px 28px,
    28px 28px,
    100% 100%;
  mask-image: linear-gradient(180deg, #000 0 58%, transparent 88%);
  pointer-events: none;
}
.identity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}
.identity-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
}
.identity-copy h1 {
  margin: 16px 0 9px;
  font-family: Manrope, sans-serif;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.accent-dot {
  color: var(--orange);
}
.role {
  max-width: 245px;
  margin: 0;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.35;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.tags li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  background: rgba(15, 15, 14, 0.54);
  color: #d4d0c7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.portrait {
  position: absolute;
  right: -40px;
  bottom: -88px;
  width: 78%;
  height: 78%;
  z-index: 1;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface) 0%, transparent 32%);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 50% 0 0 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 24%);
}
.id-code {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  color: #b5b1a8;
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}
.statement-card {
  grid-column: 6 / span 7;
  grid-row: 1 / span 3;
  padding: 30px;
  background: #1d1d1a;
}
.grid-surface {
  background-color: #1b1b19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.grid-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 78% 50%,
    rgba(255, 91, 53, 0.19),
    transparent 34%
  );
}
.statement-copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
  margin-top: 22px;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d0ccc3;
  font-size: 12px;
}
.availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(119, 214, 157, 0.1);
}
.statement-copy h2 {
  margin: 10px 0 12px;
  font-family: Manrope, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.statement-copy h2 em {
  color: var(--orange);
  font-style: normal;
}
.statement-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.statement-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.statement-cta span {
  color: var(--orange);
}
.orbit {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  width: 158px;
  height: 158px;
  border: 1px solid rgba(255, 91, 53, 0.28);
  border-radius: 50%;
  animation: orbit-spin 13s linear infinite;
  transform-origin: center;
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}
.orbit::after {
  inset: 41px;
}
.orbit-core {
  position: absolute;
  inset: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  animation: orbit-counter-spin 13s linear infinite;
}
.orbit > i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
}
.orbit > i:nth-of-type(1) {
  top: 20px;
  left: 22px;
}
.orbit > i:nth-of-type(2) {
  right: -3px;
  top: 75px;
  background: var(--orange);
}
.orbit > i:nth-of-type(3) {
  bottom: 13px;
  left: 42px;
}
.link-tile {
  grid-row: 4 / span 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  text-decoration: none;
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.link-tile::before,
.equipment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    220px circle at var(--pointer-x, -300px) var(--pointer-y, -300px),
    rgba(255, 255, 255, 0.09),
    transparent 70%
  );
  transition: opacity 0.25s;
}
.link-tile .tile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #131311;
  font-size: 20px;
}
.link-tile b {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 17px;
}
.link-tile small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.tile-icon img {
  display: block;
  width: 24px;
  height: 24px;
}
.arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #807d76;
  font-size: 18px;
  transition:
    transform 0.2s,
    color 0.2s;
}
.github-card {
  grid-column: 6 / span 4;
  background: #20201e;
}
.code-lines {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 22px;
  color: #99958d;
  font-family: monospace;
  font-size: 12px;
  line-height: 1.5;
}
.strava-card {
  grid-column: 10 / span 3;
  background: linear-gradient(145deg, #d74926, #a62816);
  border-color: #dc5534;
}
.strava-card .tile-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.13);
}
.strava-card small {
  color: #f6c7b9;
}
.strava-card .arrow {
  color: #fff;
}
.elevation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 68px;
  display: flex;
  align-items: end;
  gap: 3px;
  padding: 0 22px;
  opacity: 0.28;
}
.elevation i {
  flex: 1;
  height: var(--h, 30%);
  border-radius: 3px 3px 0 0;
  background: white;
}
.elevation i:nth-child(1) {
  --h: 20%;
}
.elevation i:nth-child(2) {
  --h: 34%;
}
.elevation i:nth-child(3) {
  --h: 50%;
}
.elevation i:nth-child(4) {
  --h: 78%;
}
.elevation i:nth-child(5) {
  --h: 55%;
}
.elevation i:nth-child(6) {
  --h: 68%;
}
.elevation i:nth-child(7) {
  --h: 90%;
}
.social-card {
  grid-row: 6 / span 2;
  background: #181816;
}
.instagram-card {
  grid-column: 1 / span 3;
}
.x-card {
  grid-column: 4 / span 3;
}
.social-card .tile-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #131311;
  font-size: 24px;
}
.social-card small {
  max-width: 150px;
}
.about-link {
  grid-column: 7 / span 6;
  grid-row: 6 / span 2;
  padding: 25px;
  text-decoration: none;
  background: var(--cream);
  color: #181816;
}
.about-link .kicker {
  color: #59564f;
}
.about-link h2 {
  margin: 17px 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 26px;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.about-link h2 span {
  color: var(--orange-dark);
}
.about-link > p:not(.kicker) {
  max-width: 340px;
  margin: 0;
  color: #514e48;
  font-size: 13px;
}
.round-arrow {
  position: absolute;
  right: 23px;
  bottom: 21px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #181816;
  color: white;
  font-size: 20px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.quebec-card {
  grid-column: 1 / span 4;
  grid-row: 8 / span 2;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(135deg, #191917, #24231e);
}
.quebec-card h2 {
  margin: 17px 0 7px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  line-height: 1.05;
}
.quebec-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.quebec-card > div:first-child {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.map-mark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  width: 138px;
  height: 138px;
  padding: 0;
  border: 1px solid #4c4941;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--orange) 0 4px, transparent 5px),
    linear-gradient(
      40deg,
      transparent 45%,
      rgba(255, 255, 255, 0.06) 46% 48%,
      transparent 49%
    );
  color: inherit;
  font: inherit;
  cursor: grab;
  touch-action: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.18s;
}
.map-mark::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px dashed #4c4941;
  border-radius: 50%;
  pointer-events: none;
}
.map-mark span {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  color: #aaa69d;
  font-family: monospace;
  font-size: 11px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.map-mark small {
  position: absolute;
  bottom: 9px;
  left: 50%;
  z-index: 2;
  color: #817e77;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.compass-needle {
  position: absolute;
  top: 38px;
  left: calc(50% - 2px);
  z-index: 1;
  width: 4px;
  height: 62px;
  border-radius: 99px;
  background: linear-gradient(
    to bottom,
    var(--orange) 0 48%,
    var(--cream) 48% 100%
  );
  box-shadow: 0 0 18px rgba(255, 91, 53, 0.18);
  transform: rotate(var(--compass-angle, 0deg));
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.map-mark.is-dragging {
  cursor: grabbing;
  transform: scale(0.98);
}
.map-mark.is-dragging .compass-needle {
  transition: none;
}
.map-mark {
  -webkit-appearance: none;
  appearance: none;
}
.setup-card {
  grid-column: 5 / span 4;
  grid-row: 8 / span 2;
  padding: 24px;
  text-decoration: none;
  background: #20201d;
}
.setup-card h2 {
  max-width: 230px;
  margin: 16px 0 18px;
  font-family: Manrope, sans-serif;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.text-link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}
.text-link b {
  margin-left: 5px;
}
.server-stack {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 98px;
  transform: rotate(-5deg);
}
.server-stack i {
  display: block;
  height: 22px;
  margin-top: 6px;
  border: 1px solid #4d4a43;
  border-radius: 5px;
  background: #151513;
  box-shadow: 5px 6px 0 #0e0e0d;
}
.server-stack i::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: 8px 0 0 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 10px 0 #5b5852;
}
.blog-card {
  grid-column: 9 / span 4;
  grid-row: 8 / span 2;
  padding: 24px;
  text-decoration: none;
  background: linear-gradient(145deg, #ff6b47, #d93d20);
  border-color: #e45130;
  color: #fff;
}
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.22) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, transparent 25%, #000 100%);
  pointer-events: none;
}
.blog-card > div {
  position: relative;
  z-index: 2;
  max-width: 265px;
}
.blog-card .kicker {
  color: #ffe1d8;
}
.blog-card h2 {
  margin: 14px 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.blog-card h2 span {
  color: #fff2ec;
}
.blog-card p:not(.kicker) {
  max-width: 250px;
  margin: 0;
  color: #ffd9cf;
  font-size: 12px;
  line-height: 1.4;
}
.blog-link {
  display: inline-block;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 700;
}
.blog-link b {
  margin-left: 5px;
}
.blog-mark {
  position: absolute;
  right: 17px;
  bottom: -13px;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
  opacity: 0.13;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.projects {
  scroll-margin-top: 24px;
  margin-top: 64px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 20px;
}
.section-heading h2 {
  max-width: 620px;
  margin: 10px 0 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s,
    box-shadow 0.22s;
}
.project-card:first-child {
  grid-column: span 2;
}
.project-shot {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0e0e0d;
  border-bottom: 1px solid var(--line);
}
.project-card:first-child .project-shot {
  aspect-ratio: 2.15/1;
}
.project-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.project-copy {
  padding: 25px;
}
.project-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.project-title-row h3 {
  margin: 7px 0 0;
  font-family: Manrope, sans-serif;
  font-size: 25px;
  letter-spacing: -0.035em;
}
.project-status {
  flex: none;
  padding: 6px 9px;
  border: 1px solid #4a4943;
  border-radius: 99px;
  color: #d5d2ca;
  font-size: 12px;
  font-weight: 700;
}
.project-copy > p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 14px;
}
.project-copy > p strong {
  color: var(--text);
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}
.project-tech li {
  padding: 6px 9px;
  border-radius: 7px;
  background: #121210;
  color: #cbc8bf;
  font-family: monospace;
  font-size: 12px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.referrals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #181816;
}
.referrals h2 {
  margin: 8px 0 0;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
}
.referral-note {
  max-width: 400px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.referral-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 10px;
}
.referral-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #20201d;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.referral-links a .referral-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 10px;
  background: #151513;
  color: var(--orange);
  font-size: 18px;
}
.referral-links a span {
  min-width: 0;
  flex: 1;
}
.referral-links a b {
  font-size: 13px;
}
.referral-links a small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.referral-links a > b {
  color: #aaa69d;
}
.like-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 14px;
  padding: 25px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #1d1d1a, #181816);
  overflow: hidden;
}
.like-panel::after {
  content: "♥";
  position: absolute;
  right: 155px;
  bottom: -55px;
  color: var(--orange);
  font-size: 150px;
  line-height: 1;
  opacity: 0.035;
  transform: rotate(-12deg);
  pointer-events: none;
}
.like-panel h2 {
  margin: 7px 0 0;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
}
.like-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.like-button {
  position: relative;
  z-index: 1;
  min-width: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid #4a4741;
  border-radius: 99px;
  background: #232320;
  color: var(--text);
  font:
    700 13px "DM Sans",
    sans-serif;
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.like-button strong {
  min-width: 25px;
  padding-left: 9px;
  border-left: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.like-heart {
  color: #9d9990;
  font-size: 18px;
  line-height: 1;
  transition:
    color 0.2s,
    transform 0.2s;
}
.like-button[aria-pressed="true"] {
  border-color: rgba(255, 91, 53, 0.72);
  background: rgba(255, 91, 53, 0.12);
}
.like-button[aria-pressed="true"] .like-heart {
  color: var(--orange);
  transform: scale(1.15);
}
.like-button:disabled {
  cursor: wait;
  opacity: 0.62;
}
.like-status {
  position: absolute;
  right: 30px;
  bottom: 5px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.easter-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 200;
  max-width: min(90vw, 430px);
  padding: 12px 18px;
  border: 1px solid var(--orange);
  border-radius: 99px;
  background: #171715;
  color: var(--text);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  font-size: 13px;
  font-weight: 700;
  transform: translate(-50%, 20px);
  opacity: 0;
  animation: easter-toast 3s ease forwards;
}
.easter-particle {
  position: fixed;
  top: -40px;
  z-index: 190;
  pointer-events: none;
  font-size: clamp(18px, 3vw, 30px);
  animation: easter-fall var(--fall-duration, 2.8s)
    cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}
.homelab-mode {
  --orange: #77d69d;
  --orange-dark: #34704a;
}
.homelab-mode .brand-mark {
  animation: brand-pulse 0.7s ease 3;
}
.homelab-mode .ambient span {
  opacity: 0.16;
  background: #77d69d;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 52px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: #aaa79f;
  font-size: 12px;
}
.footer p {
  margin: 0;
}
.footer a {
  text-decoration: none;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--text);
}

/* Secondary pages */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 14px;
  margin-bottom: 14px;
}
.hero-copy,
.hero-aside {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-copy {
  background-color: #1b1b19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-copy h1 {
  max-width: 780px;
  margin: 30px 0 16px;
  font-family: Manrope, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-copy > p:last-child {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.hero-aside {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
}
.hero-aside .big-number {
  position: absolute;
  right: -10px;
  bottom: -46px;
  font-family: Manrope, sans-serif;
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.12;
}
.hero-aside blockquote {
  position: relative;
  z-index: 1;
  margin: 64px 0 0;
  font-family: Manrope, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.hero-aside cite {
  display: block;
  margin-top: 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.82;
}
.content-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.content-card {
  grid-column: span 6;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.content-card.wide {
  grid-column: span 12;
}
.content-card.orange {
  background: var(--orange);
  border-color: #d94a2a;
}
.content-card.cream {
  background: var(--cream);
  color: #191917;
  border-color: #ded9cc;
}
.content-card h2 {
  margin: 18px 0 13px;
  font-family: Manrope, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.content-card p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.content-card.orange p {
  color: #ffd9cf;
}
.content-card.cream p {
  color: #514e48;
}
.content-card strong {
  color: var(--text);
}
.content-card.cream strong {
  color: #191917;
}
.learning-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.learning-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #151513;
}
.learning-item .ui-icon {
  color: var(--orange);
  font-size: 20px;
}
.learning-item h3 {
  margin: 22px 0 5px;
  font-size: 14px;
}
.learning-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.sport-icons {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}
.sport-icons span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 19px;
}
.content-card.orange {
  position: relative;
  overflow: hidden;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}
.equipment-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.equipment-section {
  grid-column: span 6;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.equipment-section.wide {
  grid-column: span 12;
}
.equipment-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.equipment-heading h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
}
.equipment-heading > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #121210;
  color: var(--orange);
  font-size: 18px;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.equipment-section.wide .equipment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.equipment-card {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #151513;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.equipment-card .card-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #22221f;
  color: #d9d6ce;
}
.equipment-card h3 {
  margin: 26px 0 7px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}
.equipment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.external-link {
  margin-top: auto;
  padding-top: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.error-layout {
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
}
.error-layout .error-code {
  color: var(--orange);
  font-family: Manrope, sans-serif;
  font-size: clamp(100px, 20vw, 220px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.1em;
}
.error-layout h1 {
  margin: 22px 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 32px;
}
.error-layout p {
  margin: 0;
  color: var(--muted);
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.legal-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s;
}
.legal-card.wide {
  grid-column: span 2;
  min-height: 0;
}
.legal-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #141412;
  color: var(--orange);
}
.legal-card h2 {
  margin: 25px 0 13px;
  font-family: Manrope, sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.legal-card p {
  max-width: 800px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.legal-card strong {
  color: var(--text);
}
.legal-card dl {
  margin: 25px 0 0;
}
.legal-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.legal-card dt {
  color: var(--muted);
}
.legal-card dd {
  margin: 0;
}
.legal-card a {
  color: var(--text);
}
.legal-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.js-motion .reveal {
  opacity: 0;
}
.js-motion .reveal.is-visible {
  opacity: 1;
  animation: enter 0.72s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: var(--reveal-delay, 0ms);
}
@keyframes enter {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
@keyframes elevation-pulse {
  50% {
    height: calc(var(--h, 30%) + 10%);
    opacity: 1;
  }
}
@keyframes server-blink {
  50% {
    background: var(--green);
    box-shadow:
      10px 0 var(--orange),
      0 0 10px var(--green);
  }
}
@keyframes like-pop {
  50% {
    transform: scale(1.35);
  }
}
@keyframes easter-toast {
  10%,
  82% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -8px);
  }
}
@keyframes easter-fall {
  to {
    transform: translate(var(--fall-x, 0), 110vh) rotate(520deg);
    opacity: 0.2;
  }
}
@keyframes brand-pulse {
  50% {
    transform: scale(1.18) rotate(8deg);
    box-shadow: 0 0 28px var(--orange);
  }
}
@keyframes orbit-spin {
  from {
    transform: translate(var(--orbit-shift-x, 0), var(--orbit-shift-y, 0))
      rotate(0deg);
  }
  to {
    transform: translate(var(--orbit-shift-x, 0), var(--orbit-shift-y, 0))
      rotate(360deg);
  }
}
@keyframes orbit-counter-spin {
  to {
    transform: rotate(-360deg);
  }
}
@media (hover: hover) {
  .tile:hover,
  .equipment-card:hover,
  .content-card:hover,
  .hero-copy:hover,
  .hero-aside:hover,
  .legal-card:hover,
  .learning-item:hover,
  .referral-links a:hover,
  .project-card:hover {
    z-index: 2;
    transform: translateY(-2px);
    border-color: #5d5a53;
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
  }
  .project-card:hover .project-shot img {
    transform: scale(1.018);
  }
  .identity-card:hover .portrait {
    transform: translateY(-5px) scale(1.025);
  }
  .about-link:hover .round-arrow {
    transform: rotate(-18deg) scale(1.06);
  }
  .blog-card:hover .blog-mark {
    transform: rotate(-6deg) scale(1.08);
  }
  .strava-card:hover .elevation i {
    animation: elevation-pulse 0.7s ease-in-out infinite alternate;
    animation-delay: calc(var(--bar-index, 0) * 55ms);
  }
  .strava-card:hover .elevation i:nth-child(1) {
    --bar-index: 1;
  }
  .strava-card:hover .elevation i:nth-child(2) {
    --bar-index: 2;
  }
  .strava-card:hover .elevation i:nth-child(3) {
    --bar-index: 3;
  }
  .strava-card:hover .elevation i:nth-child(4) {
    --bar-index: 4;
  }
  .strava-card:hover .elevation i:nth-child(5) {
    --bar-index: 5;
  }
  .strava-card:hover .elevation i:nth-child(6) {
    --bar-index: 6;
  }
  .strava-card:hover .elevation i:nth-child(7) {
    --bar-index: 7;
  }
  .setup-card:hover .server-stack i::after {
    animation: server-blink 0.8s steps(2, end) infinite;
  }
  .map-mark:hover {
    border-color: var(--orange);
    box-shadow:
      0 0 0 7px rgba(255, 91, 53, 0.06),
      0 12px 28px rgba(0, 0, 0, 0.25);
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-tile:hover::before,
  .equipment-card:hover::before {
    opacity: 0.65;
  }
  .link-tile:hover .arrow {
    color: var(--text);
    transform: translate(2px, -2px);
  }
  .button:hover {
    transform: translateY(-1px);
    border-color: #5d5a53;
  }
}
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.like-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.map-mark:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
@media (max-width: 940px) {
  .site-header {
    gap: 22px;
  }
  .bento {
    grid-auto-rows: 108px;
  }
  .home-bento > * {
    grid-row: auto;
  }
  .identity-card {
    grid-column: span 6;
  }
  .statement-card {
    grid-column: span 6;
  }
  .statement-copy h2 {
    font-size: 36px;
  }
  .orbit {
    opacity: 0.62;
  }
  .link-tile {
    grid-column: span 3;
  }
  .social-card {
    grid-column: span 3;
  }
  .about-link {
    grid-column: span 6;
  }
  .quebec-card {
    grid-column: span 3;
  }
  .setup-card {
    grid-column: span 3;
  }
  .blog-card {
    grid-column: span 6;
  }
  .server-stack {
    opacity: 0.35;
  }
  .page-hero {
    grid-template-columns: 1fr;
  }
  .hero-aside {
    min-height: 220px;
  }
  .content-card {
    grid-column: span 12;
  }
  .equipment-section,
  .equipment-section.wide {
    grid-column: span 12;
  }
}
@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 24px), 1180px);
  }
  .site-header {
    height: auto;
    min-height: 86px;
    flex-wrap: wrap;
    padding: 16px 0;
  }
  .brand {
    margin-right: auto;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 13px;
    border-top: 1px solid var(--line);
  }
  .header-contact {
    padding: 8px 11px;
    font-size: 11px;
  }
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .tile {
    min-height: 190px;
  }
  .identity-card,
  .statement-card,
  .about-link,
  .setup-card,
  .blog-card,
  .link-tile,
  .social-card,
  .quebec-card {
    grid-column: span 2;
    grid-row: auto;
  }
  .identity-card {
    min-height: 510px;
  }
  .portrait {
    right: auto;
    left: 50%;
    bottom: -24px;
    width: 100%;
    height: 66%;
    transform: translateX(-50%);
    filter: saturate(0.8) contrast(1.03);
  }
  .portrait::after {
    background: linear-gradient(
      180deg,
      transparent 52%,
      rgba(24, 24, 22, 0.72) 100%
    );
  }
  .portrait img {
    object-position: center center;
    border-radius: 42% 42% 0 0;
    mask-image: linear-gradient(180deg, #000 0 78%, transparent 100%);
  }
  .id-code {
    right: 18px;
  }
  .statement-card {
    min-height: 390px;
    padding: 25px;
  }
  .statement-copy {
    margin-top: 18px;
  }
  .statement-copy p {
    max-width: 70%;
  }
  .orbit {
    right: 18px;
    bottom: 18px;
    width: 132px;
    height: 132px;
  }
  .orbit::before {
    inset: 15px;
  }
  .orbit::after {
    inset: 34px;
  }
  .orbit-core {
    inset: 44px;
  }
  .orbit > i:nth-of-type(1) {
    top: 16px;
    left: 18px;
  }
  .orbit > i:nth-of-type(2) {
    top: 62px;
  }
  .orbit > i:nth-of-type(3) {
    bottom: 10px;
    left: 34px;
  }
  .link-tile {
    min-height: 150px;
    flex-direction: row;
  }
  .code-lines,
  .elevation {
    opacity: 0.38;
  }
  .about-link {
    min-height: 240px;
  }
  .setup-card,
  .blog-card {
    min-height: 220px;
  }
  .referrals,
  .like-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
  .referral-links {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .like-button {
    width: 100%;
  }
  .like-status {
    position: static;
    min-height: 15px;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    width: 100%;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .hero-copy,
  .hero-aside {
    padding: 26px;
  }
  .content-bento {
    grid-template-columns: 1fr;
  }
  .content-card,
  .content-card.wide {
    grid-column: 1;
    padding: 23px;
  }
  .learning-list {
    grid-template-columns: 1fr;
  }
  .equipment-layout {
    grid-template-columns: 1fr;
  }
  .equipment-section,
  .equipment-section.wide {
    grid-column: 1;
    padding: 20px;
  }
  .equipment-grid,
  .equipment-section.wide .equipment-grid {
    grid-template-columns: 1fr;
  }
  .equipment-card {
    min-height: 150px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-card,
  .legal-card.wide {
    grid-column: 1;
    min-height: 0;
    padding: 23px;
  }
}
@media (max-width: 700px) {
  .identity-card .role {
    position: relative;
    z-index: 3;
    max-width: 220px;
    text-shadow:
      0 2px 10px #090908,
      0 1px 3px #090908;
  }
}
@media (max-width: 420px) {
  .header-contact {
    display: none;
  }
  .identity-card {
    min-height: 360px;
  }
  .identity-copy {
    padding: 23px;
  }
  .identity-copy h1 {
    font-size: 54px;
  }
  .statement-card {
    min-height: 370px;
  }
  .statement-copy h2 {
    font-size: 33px;
  }
  .statement-copy p {
    max-width: 64%;
    font-size: 12px;
  }
  .tile:not(.identity-card):not(.statement-card) {
    min-height: 176px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .footer {
    margin-top: 36px;
  }
}
@media (max-width: 940px) {
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-card:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 700px) {
  .header-contact {
    font-size: 12px;
  }
  .projects {
    margin-top: 48px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card,
  .project-card:first-child {
    grid-column: 1;
  }
  .project-card:first-child .project-shot,
  .project-shot {
    aspect-ratio: 16/9;
  }
  .portrait img {
    object-position: center 68%;
  }
}
@media (max-width: 420px) {
  .site-header {
    gap: 12px;
  }
  .brand {
    font-size: 13px;
  }
  .header-contact {
    display: inline-flex;
    padding: 8px 10px;
  }
  .contact-label {
    display: none;
  }
  .contact-short {
    display: inline;
  }
  .identity-copy h1 {
    font-size: 48px;
    line-height: 0.88;
  }
  .role {
    font-size: 14px;
  }
  .statement-card {
    min-height: 350px;
  }
  .statement-copy h2 {
    font-size: 30px;
  }
  .statement-copy p {
    max-width: 72%;
    font-size: 13px;
  }
  .statement-cta {
    margin-top: 12px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .project-copy {
    padding: 21px;
  }
  .project-title-row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-copy h1 {
    font-size: 36px;
  }
}
@media (hover: hover) and (max-width: 700px) {
  .identity-card:hover .portrait {
    transform: translateX(-50%) translateY(-5px) scale(1.025);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .orbit,
  .orbit-core,
  .easter-toast,
  .easter-particle,
  .brand-mark,
  .elevation i,
  .server-stack i::after {
    animation: none !important;
  }
  .ambient {
    display: none;
  }
  .tile,
  .link-tile,
  .about-link,
  .setup-card,
  .blog-card,
  .blog-mark,
  .referral-links a,
  .equipment-card,
  .legal-card,
  .button,
  .like-button,
  .like-heart,
  .map-mark,
  .compass-needle,
  .portrait,
  .round-arrow {
    transition: none;
  }
  .tile:hover,
  .equipment-card:hover,
  .content-card:hover,
  .hero-copy:hover,
  .hero-aside:hover,
  .legal-card:hover,
  .learning-item:hover,
  .referral-links a:hover,
  .identity-card:hover .portrait,
  .about-link:hover .round-arrow,
  .blog-card:hover .blog-mark {
    transform: none;
  }
}

/* Applications */
.app-showcase {
  display: grid;
  gap: 14px;
}
.app-project {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}
.app-project:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}
.app-project:nth-child(even) .app-visual {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}
.app-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0d0d0c;
  color: inherit;
  text-decoration: none;
}
.app-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(#000, transparent 92%);
}
.sure-visual {
  background:
    radial-gradient(
      circle at 45% 48%,
      rgba(255, 91, 53, 0.26),
      transparent 42%
    ),
    #10100f;
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 360px;
  padding: 10px;
  border: 1px solid #595851;
  border-radius: 39px;
  background: #070707;
  box-shadow:
    0 28px 60px #000,
    0 0 0 5px #20201e;
  transform: rotate(5deg);
}
.phone-island {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  width: 65px;
  height: 18px;
  border-radius: 20px;
  background: #050505;
  transform: translateX(-50%);
}
.phone-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 20px 20px;
  border-radius: 30px;
  background: linear-gradient(155deg, #282824, #151513);
}
.phone-ui .ui-brand {
  color: var(--orange);
  font: 800 12px Manrope;
  letter-spacing: 0.18em;
}
.phone-ui strong {
  margin: 55px 0 13px;
  font: 800 22px/1.1 Manrope;
  text-align: center;
}
.ui-pill {
  padding: 7px 11px;
  border-radius: 99px;
  background: rgba(119, 214, 157, 0.13);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}
.phone-ui i {
  width: 100%;
  height: 7px;
  margin-top: 13px;
  border-radius: 8px;
  background: #343430;
}
.phone-ui i:nth-of-type(2) {
  width: 75%;
  align-self: flex-start;
}
.phone-ui i:nth-of-type(3) {
  height: 38px;
  margin-top: auto;
  background: var(--orange);
}
.ethernet-visual {
  background:
    radial-gradient(
      circle at 58% 38%,
      rgba(119, 214, 157, 0.2),
      transparent 38%
    ),
    #10100f;
}
.menu-window {
  position: relative;
  z-index: 1;
  width: min(78%, 320px);
  padding: 18px;
  border: 1px solid #55554e;
  border-radius: 18px;
  background: rgba(32, 32, 29, 0.95);
  box-shadow: 0 30px 70px #000;
  transform: rotate(-3deg);
}
.menu-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.menu-top span {
  color: var(--green);
  font-size: 23px;
}
.menu-top b {
  font-family: Manrope;
  font-size: 13px;
}
.menu-top i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
.network-stat {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 24px;
}
.network-stat span {
  color: var(--muted);
  font-size: 11px;
}
.network-stat strong {
  font: 800 21px Manrope;
}
.network-row {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}
.network-row span {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  background: #151513;
  color: #d5d2ca;
  font: 11px monospace;
}
.signal-bars {
  height: 50px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 22px;
}
.signal-bars i {
  flex: 1;
  height: 28%;
  border-radius: 3px 3px 0 0;
  background: var(--green);
  opacity: 0.72;
}
.signal-bars i:nth-child(2) {
  height: 60%;
}
.signal-bars i:nth-child(3) {
  height: 42%;
}
.signal-bars i:nth-child(4) {
  height: 82%;
}
.signal-bars i:nth-child(5) {
  height: 68%;
}
.visual-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #8e8b83;
  font: 700 10px Manrope;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.app-project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}
.app-project-copy h2 {
  margin: 8px 0 0;
  font: 800 clamp(29px, 4vw, 46px) / 1 Manrope;
  letter-spacing: -0.055em;
}
.app-project-copy > p {
  max-width: 580px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.app-project-copy .app-lead {
  margin-bottom: 18px;
  color: var(--text);
  font: 700 18px/1.4 Manrope;
  letter-spacing: -0.02em;
}
.project-status.active {
  border-color: rgba(119, 214, 157, 0.35);
  background: rgba(119, 214, 157, 0.08);
  color: var(--green);
}
.project-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
}
.coming-projects {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #1c1c1a, #151513);
}
.coming-projects h2 {
  margin: 9px 0 7px;
  font: 800 clamp(25px, 3.5vw, 38px) / 1.05 Manrope;
  letter-spacing: -0.045em;
}
.coming-projects p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.coming-slots {
  display: flex;
  gap: 8px;
}
.coming-slots span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px dashed #53514b;
  border-radius: 15px;
  color: #77746d;
  font: 800 13px Manrope;
}
.coming-slots span:last-child {
  border-style: solid;
  border-color: var(--orange);
  color: var(--orange);
  font-size: 20px;
}
@media (hover: hover) {
  .app-project:hover {
    transform: translateY(-2px);
    border-color: #5d5a53;
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 760px) {
  .app-project,
  .app-project:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .app-project:nth-child(even) .app-visual {
    order: 0;
    border-left: 0;
  }
  .app-visual,
  .app-project:nth-child(even) .app-visual {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .coming-projects {
    align-items: flex-start;
    flex-direction: column;
  }
  .coming-slots {
    width: 100%;
  }
  .coming-slots span {
    flex: 1;
  }
  .site-header nav {
    gap: 14px;
  }
  .site-header nav a {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .app-visual,
  .app-project:nth-child(even) .app-visual {
    min-height: 320px;
  }
  .phone-frame {
    width: 155px;
    height: 292px;
    border-radius: 32px;
  }
  .phone-ui {
    padding: 45px 16px 16px;
    border-radius: 24px;
  }
  .phone-ui strong {
    margin: 35px 0 12px;
    font-size: 18px;
  }
  .app-project-copy {
    padding: 24px;
  }
  .app-project-copy .project-title-row {
    flex-direction: column;
  }
  .site-header nav {
    gap: 9px;
  }
  .site-header nav a {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .app-project {
    transition: none;
  }
  .app-project:hover {
    transform: none;
  }
}
.app-icon {
  position: absolute;
  z-index: 1;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.42));
}
.app-icon-sure {
  top: 24px;
  left: 24px;
  border-radius: 22px;
}
.app-icon-ethernet {
  top: 22px;
  right: 22px;
}
.phone-frame,
.menu-window {
  z-index: 2;
}
.project-status.available {
  border-color: rgba(119, 214, 157, 0.5);
  background: rgba(119, 214, 157, 0.12);
  color: var(--green);
}
.project-action {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  padding: 12px 17px;
  border: 1px solid var(--orange);
  border-radius: 99px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s,
    filter 0.2s;
}
.project-action-secondary {
  background: transparent;
  color: var(--orange);
}
.project-source {
  align-self: flex-start;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.ethernet-symbol {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(42, 133, 255, 0.15);
  font-size: 15px !important;
}

.download-help {
  position: relative;
  margin-top: 1rem;
  padding: 1.1rem 3rem 1.1rem 1.1rem;
  border: 1px solid rgba(42, 133, 255, 0.38);
  border-radius: 14px;
  background: rgba(42, 133, 255, 0.08);
  color: var(--muted);
  animation: download-help-in 0.28s ease both;
}

.download-help[hidden] {
  display: none;
}

.download-help h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.download-help p {
  margin: 0.45rem 0 0;
}

.download-help ol {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
}

.download-help li + li {
  margin-top: 0.45rem;
}

.download-help a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.download-help-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.download-help-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.download-help-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: var(--orange);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
}

@keyframes download-help-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-action:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.project-source:hover {
  color: var(--text);
}

/* Accueil compact — contenu priorisé pour un écran desktop */
.home-featured-projects { margin-top: 54px; }
.home-curated .setup-card { grid-column:1 / span 6; }
.home-curated .blog-card { grid-column:7 / span 6; }
.home-dashboard { display: grid; gap: 14px; }
.home-intro { min-height: 278px; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(230px, .55fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, #20201d, #171715); box-shadow: var(--shadow); }
.home-intro-copy { position: relative; z-index: 2; padding: clamp(28px, 4vw, 48px); }
.home-intro h1 { margin: 10px 0 13px; font: 800 clamp(40px, 5vw, 68px)/.92 Manrope, sans-serif; letter-spacing: -.065em; text-transform: uppercase; }
.home-intro h1 em { color: var(--orange); font-style: normal; }
.home-intro-copy > p:not(.kicker) { max-width: 690px; margin: 0; color: var(--muted); font-size: 15px; }
.home-portrait { position: relative; min-height: 278px; overflow: hidden; }
.home-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #1b1b18 0, transparent 42%), linear-gradient(0deg, rgba(0,0,0,.25), transparent 55%); }
.home-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 42%; filter: saturate(.82) contrast(1.04); }
.intro-actions { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.primary-pill, .text-pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 99px; font-size: 13px; font-weight: 700; text-decoration: none; }
.primary-pill { background: var(--orange); color: #fff; }
.text-pill { border: 1px solid var(--line); color: var(--cream); }
.compact-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 3px 2px 10px; }
.compact-heading h2 { margin: 4px 0 0; font: 800 27px/1 Manrope, sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.compact-heading > a { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.home-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.home-project-card { min-height: 205px; display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 18px; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: inherit; text-decoration: none; box-shadow: var(--shadow); transition: transform .2s, border-color .2s; }
.home-project-card.project-ethernet { background: radial-gradient(circle at 5% 100%, rgba(255,91,53,.16), transparent 32%), #1b1b19; }
.home-project-icon { width: 104px; height: 104px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 25px; background: #11110f; }
.home-project-icon img { width: 78px; height: 78px; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(0,0,0,.4)); }
.home-project-card .project-status { float: right; margin-left: 8px; }
.home-project-card h3 { margin: 7px 0 5px; font: 800 24px/1.05 Manrope, sans-serif; letter-spacing: -.04em; }
.home-project-card p:not(.kicker) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.card-link { display: inline-block; margin-top: 10px; color: var(--orange); font-size: 12px; font-weight: 700; }
.home-secondary { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 9px; }
.home-secondary > a { display: flex; flex-direction: column; padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; background: #181816; text-decoration: none; }
.home-secondary strong { font: 700 14px Manrope, sans-serif; }
.home-secondary span { color: var(--muted); font-size: 11px; }
.social-mini { display: flex; align-items: center; gap: 7px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: #181816; }
.social-mini a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: #11110f; }
.social-mini img { width: 18px; height: 18px; }
.compact-footer { min-height: 54px; padding-block: 14px; }

/* Profile links — mobile-first page for social bios */
.links-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 91, 53, 0.16), transparent 35rem),
    var(--bg);
}
.links-shell {
  width: min(calc(100% - 32px), 620px);
  margin-inline: auto;
  padding: 28px 0 36px;
}
.links-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}
.links-home {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .055em;
  text-decoration: none;
}
.links-profile {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.links-avatar {
  position: relative;
  display: block;
  width: 104px;
  height: 104px;
  padding: 4px;
  border: 1px solid rgba(255, 91, 53, .6);
  border-radius: 28px 12px 28px 12px;
  background: rgba(255, 91, 53, .08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
}
.links-avatar::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 8px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--green);
}
.links-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 23px 9px 23px 9px;
  object-fit: cover;
}
.links-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.links-eyebrow span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 91, 53, .13);
}
.links-profile h1 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(34px, 8vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
}
.links-profile h1 span { color: var(--orange); }
.links-profile > div > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.profile-links {
  display: grid;
  gap: 11px;
}
.profile-link {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(26, 26, 24, .86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.profile-link--featured {
  border-color: rgba(255, 91, 53, .58);
  background: linear-gradient(100deg, rgba(255, 91, 53, .15), rgba(26, 26, 24, .9) 55%);
}
.profile-link:hover,
.profile-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  background-color: var(--surface-2);
}
.profile-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.profile-link-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px 6px 13px 6px;
  background: var(--surface-2);
}
.profile-link-icon img { display: block; }
.profile-link-letter {
  color: var(--orange);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.profile-link-mail { font-size: 21px; }
.profile-link > span:nth-child(2) { min-width: 0; display: grid; }
.profile-link b {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}
.profile-link small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-link > i {
  color: #8e8b83;
  font-size: 19px;
  font-style: normal;
  text-align: right;
  transition: color .18s ease, transform .18s ease;
}
.profile-link:hover > i { color: var(--orange); transform: translate(2px, -2px); }
.referral-section { padding-top: 38px; }
.links-section-heading { display: grid; grid-template-columns: 1fr minmax(210px, .85fr); align-items: end; gap: 24px; margin-bottom: 14px; }
.links-section-heading h2 { margin: 7px 0 0; font: 800 27px/1 Manrope, sans-serif; letter-spacing: -.04em; }
.links-section-heading > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; text-align: right; }
.referral-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.referral-card { position: relative; min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.referral-card::before { content: ""; position: absolute; top: -50px; right: -35px; width: 130px; height: 130px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255,255,255,.025), 0 0 0 44px rgba(255,255,255,.018); }
.referral-racknerd::before { border-radius: 15px; transform: rotate(24deg); }
.referral-card:hover, .referral-card:focus-visible { transform: translateY(-2px); border-color: var(--orange); }
.referral-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.referral-badge { position: absolute; top: 15px; left: 15px; padding: 5px 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: var(--muted); font-size: 11px; font-weight: 700; }
.referral-card strong { position: relative; font: 800 21px/1.2 Manrope, sans-serif; }
.referral-card small { position: relative; margin-top: 4px; padding-right: 22px; color: var(--muted); font-size: 12px; }
.referral-card > i { position: absolute; right: 17px; bottom: 18px; color: var(--orange); font-size: 18px; font-style: normal; }
.links-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 4px 0;
  color: #85827a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.links-footer a { text-underline-offset: 4px; }
.links-footer a:hover { color: var(--text); }
@media (max-width: 480px) {
  .links-shell { width: min(calc(100% - 24px), 620px); padding-top: 18px; }
  .links-topbar { margin-bottom: 30px; }
  .links-profile { grid-template-columns: 82px minmax(0, 1fr); gap: 17px; }
  .links-avatar { width: 82px; height: 82px; border-radius: 23px 10px 23px 10px; }
  .links-avatar img { border-radius: 18px 7px 18px 7px; }
  .links-profile h1 { font-size: clamp(30px, 9vw, 40px); }
  .links-profile > div > p:last-child { font-size: 14px; }
  .profile-link { min-height: 70px; padding: 12px 13px; }
  .links-section-heading { grid-template-columns: 1fr; gap: 8px; }
  .links-section-heading > p { text-align: left; }
  .referral-grid { grid-template-columns: 1fr; }
  .referral-card { min-height: 126px; }
}
@media (prefers-reduced-motion: reduce) {
  .profile-link, .profile-link > i { transition: none; }
}
@media (hover:hover) { .home-project-card:hover { transform: translateY(-3px); border-color: #625e55; } .compact-heading > a:hover, .home-secondary > a:hover strong { color: var(--orange); } }
@media (min-width: 941px) and (min-height: 780px) { .home-clean .site-header { height: 82px; } }
@media (max-width: 760px) { .home-intro { grid-template-columns: 1fr; } .home-portrait { min-height: 220px; order: -1; } .home-project-grid, .home-secondary { grid-template-columns: 1fr; } .social-mini { justify-content: center; } }
@media (max-width: 480px) { .home-project-card { grid-template-columns: 74px 1fr; padding: 17px; gap: 13px; } .home-project-icon { width: 70px; height: 70px; border-radius: 18px; } .home-project-icon img { width: 54px; height: 54px; } .home-project-card .project-status { float: none; display: inline-block; margin: 0 0 8px; } }

/* Fiche Ethernet Menu Bar */
.product-page { --product-blue: #5aa8ff; }
.product-hero { position: relative; min-height: 560px; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr); align-items: center; gap: 55px; padding: 56px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 82% 35%, rgba(255,91,53,.24), transparent 33%), linear-gradient(140deg,#23231f,#121210 70%); box-shadow: var(--shadow); }
.product-hero-copy { position: relative; z-index: 2; }
.product-eyebrow { display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: 13px; font-weight: 700; }
.product-eyebrow img { width: 58px; height: 58px; }
.product-hero h1 { margin: 20px 0 15px; font: 800 clamp(50px,7vw,92px)/.86 Manrope,sans-serif; letter-spacing: -.075em; text-transform: uppercase; }
.product-hero h1 span { color: var(--orange); }
.product-hero-copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 17px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.product-actions .project-action { margin: 0; }
.product-demo { position: relative; min-height: 390px; display: grid; place-items: center; }
.product-demo .menu-window { width: min(100%,360px); padding: 24px; transform: rotate(-4deg); box-shadow: 0 40px 90px #000; }
.product-demo::before { content:""; position:absolute; width:340px; height:340px; border:1px solid rgba(255,91,53,.24); border-radius:50%; box-shadow: 0 0 0 50px rgba(255,91,53,.035), 0 0 0 100px rgba(255,91,53,.02); }
.product-section { padding: 82px 0 0; }
.product-section-heading { max-width: 760px; margin-bottom: 28px; }
.product-section-heading h2 { margin: 9px 0 10px; font: 800 clamp(34px,5vw,58px)/.95 Manrope,sans-serif; letter-spacing: -.055em; text-transform: uppercase; }
.product-section-heading p { color: var(--muted); }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.feature-card { min-height:230px; padding:26px; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); }
.feature-number { color:var(--orange); font:700 12px monospace; }
.feature-card h3 { margin:35px 0 9px; font:800 21px/1.1 Manrope,sans-serif; }
.feature-card p { margin:0; color:var(--muted); font-size:14px; }
.screenshot-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:14px; }
.screenshot-card { margin:0; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius); background:#181816; box-shadow:var(--shadow); }
.screenshot-card > img { width:100%; height:100%; display:block; object-fit:cover; }
.screenshot-menu { min-height:320px; display:flex; flex-direction:column; }
.screenshot-menu > img { flex:1; min-height:240px; object-position:center; }
.screenshot-settings { grid-row:span 2; display:flex; flex-direction:column; }
.screenshot-settings > img { flex:1; min-height:480px; object-position:center; }
.screenshot-status { min-height:190px; display:grid; grid-template-columns:minmax(220px,.8fr) 1fr; align-items:center; }
.status-shot-wrap { height:100%; display:grid; place-items:center; padding:32px; background:radial-gradient(circle,rgba(255,91,53,.18),transparent 58%),#0d0d0c; }
.status-shot-wrap img { width:187px; height:auto; filter:drop-shadow(0 12px 22px rgba(0,0,0,.45)); }
.screenshot-card figcaption { display:flex; flex-direction:column; gap:3px; padding:17px 20px; border-top:1px solid var(--line); }
.screenshot-card figcaption strong { font:800 16px Manrope,sans-serif; }
.screenshot-card figcaption span { color:var(--muted); font-size:13px; }
.ethernet-product-page .product-hero { min-height:460px; gap:34px; padding:38px 44px; }
.ethernet-product-page .product-demo { min-height:320px; }
.ethernet-product-page .product-demo::before { width:280px; height:280px; }
.ethernet-product-page .product-hero h1 { font-size:clamp(46px,6vw,76px); }
.ethernet-product-page .product-section { padding-top:52px; }
.ethernet-product-page .product-section-heading { margin-bottom:18px; }
.ethernet-product-page .product-section-heading h2 { font-size:clamp(30px,4vw,46px); }
.ethernet-product-page .screenshot-grid { grid-template-columns:.85fr 1.15fr; align-items:start; }
.ethernet-product-page .screenshot-menu,
.ethernet-product-page .screenshot-settings { min-height:0; }
.ethernet-product-page .screenshot-menu > img,
.ethernet-product-page .screenshot-settings > img { flex:none; width:100%; height:auto; min-height:0; aspect-ratio:auto; object-fit:contain; }
.ethernet-product-page .screenshot-settings { grid-row:auto; }
.ethernet-product-page .compact-features .feature-grid { grid-template-columns:repeat(2,1fr); }
.ethernet-product-page .feature-card { min-height:165px; padding:22px; }
.ethernet-product-page .feature-card h3 { margin:24px 0 7px; }
.ethernet-product-page .product-install { margin-top:52px; }
.ethernet-product-page .install-callout,
.ethernet-product-page .install-steps { padding-block:25px; }
.product-install { display:grid; grid-template-columns:.8fr 1.2fr; gap:14px; margin-top:82px; }
.install-callout, .install-steps { padding:32px; border:1px solid var(--line); border-radius:var(--radius); background:#191917; }
.install-callout { background:linear-gradient(145deg,#ff633e,#b92e18); }
.install-callout h2 { margin:12px 0; font:800 38px/1 Manrope,sans-serif; letter-spacing:-.05em; text-transform:uppercase; }
.install-callout p { color:#ffe0d7; }
.install-steps { margin:0; padding-left:56px; }
.install-steps li { padding:8px 0 8px 8px; color:var(--muted); }
.install-steps li::marker { color:var(--orange); font-weight:800; }
@media(max-width:800px){.product-hero{grid-template-columns:1fr;padding:30px}.product-demo{min-height:320px}.feature-grid,.screenshot-grid{grid-template-columns:1fr}.screenshot-settings{grid-row:auto}.screenshot-settings>img{min-height:0}.product-install{grid-template-columns:1fr}}
@media(max-width:520px){.screenshot-status{grid-template-columns:1fr}.status-shot-wrap{min-height:145px}.screenshot-menu{min-height:0}.screenshot-menu>img{min-height:0}}
@media(max-width:800px){.home-curated .setup-card,.home-curated .blog-card{grid-column:auto}.ethernet-product-page .product-hero{padding:26px}.ethernet-product-page .screenshot-grid,.ethernet-product-page .compact-features .feature-grid{grid-template-columns:1fr}}
@media (max-width: 420px) {
  .app-icon {
    width: 66px;
    height: 66px;
  }
  .app-icon-sure {
    top: 18px;
    left: 18px;
    border-radius: 16px;
  }
  .app-icon-ethernet {
    top: 17px;
    right: 17px;
  }
}
