:root {
  color-scheme: light;
  --ink: #0b1220;
  --ink-soft: #1d2533;
  --muted: #6b7280;
  --muted-2: #9aa3b2;
  --page: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --line: rgba(15, 23, 42, 0.08);
  --line-2: rgba(15, 23, 42, 0.12);
  --blue: #1463ff;
  --blue-strong: #0b53e0;
  --blue-soft: #e9f0ff;
  --blue-tint: #f3f7ff;
  --green: #008060;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 2px 6px rgba(15, 23, 42, 0.06), 0 18px 40px rgba(15, 23, 42, 0.10);
  --shadow-deep: 0 30px 80px rgba(15, 23, 42, 0.18);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --phi: 1.618;
  --gold-major: 61.8%;
  --gold-minor: 38.2%;
  --content-max: 1292px;
  --measure-wide: 987px;
  --measure: 760px;
  --measure-narrow: 610px;
  --page-gutter: max(20px, calc((100vw - var(--content-max)) / 2));
  --section-y: clamp(72px, 6.18vw, 118px);
  --grid-gap: clamp(18px, 1.618vw, 26px);
  --card-pad: clamp(26px, 2.618vw, 42px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue-strong); }

p, h1, h2, h3, dl, dd, figure { margin: 0; }

h1, h2, h3 {
  letter-spacing: 0;
  line-height: 1.04;
  color: var(--ink);
}

h1 { font-size: 7.6rem; font-weight: 720; }
h2 { font-size: 3.6rem; font-weight: 720; }
h3 { font-size: 1.9rem; font-weight: 680; }

p, h1, h2, h3, li, dd, dt, a, strong, span { overflow-wrap: break-word; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.9rem;
}
.skip-link:focus { transform: translateY(0); }

/* language switch */
.language-switch {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 3px;
  margin: 0 0 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.language-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  min-width: 72px;
  padding: 10px 14px;
}

.language-button.is-active,
.language-button[aria-pressed="true"] {
  background: var(--ink);
  color: #ffffff;
}

.language-button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: clamp(34px, 3.82vw, 50px) var(--page-gutter) clamp(70px, 6.18vw, 96px);
  background: var(--page);
  text-align: center;
}

.hero > * { min-width: 0; }

/* tile rail (icon cards) */
.tile-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 16px);
  width: 100%;
  max-width: var(--measure-wide);
  margin-bottom: clamp(50px, 4.72vw, 76px);
}

.tile-rail.cael-rail {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: var(--measure-wide);
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 144px;
  padding: 18px 16px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  color: var(--ink);
}

.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #ffffff;
}

.tile-icon svg { width: 28px; height: 28px; }

.tile-profile { background: var(--blue-soft); color: var(--blue); }
.tile-approach { background: #0f766e; }
.tile-app { background: var(--blue); }
.tile-totio {
  width: 78px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.16);
}

.tile-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tile-logo-myphrase {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.tile-logo-totio { width: 68px; }

.tile-letter {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
}

.tile-360 { background: #0b1220; }

.tile-360-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.tile-skills {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  gap: 5px;
  background: var(--blue-soft);
  padding: 0;
  place-content: center;
}

.tile-skills .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.tile-photography {
  background: #111827;
  color: #ffffff;
}

.tile-cael {
  background: #7c3aed;
  color: #ffffff;
}

.tile-title {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: 0;
}

.tile-title-long { font-size: 0.9rem; }

.tile-sub {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* hero copy */
.hero-copy {
  width: 100%;
  max-width: var(--measure-wide);
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-kicker,
.project-label,
.profile-grid span,
.case-points span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 100%;
  font-size: 7.6rem;
  font-weight: 740;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 span {
  display: inline-block;
}

.hero-lede {
  width: 100%;
  max-width: var(--measure-narrow);
  margin-top: clamp(24px, 2.8vw, 30px);
  color: var(--muted);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: var(--measure-narrow);
  margin-top: clamp(28px, 3.2vw, 34px);
  margin-bottom: clamp(44px, 5vw, 58px);
}

.hero-actions.cael-actions { max-width: var(--measure-wide); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button-label { min-width: 0; }

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(20, 99, 255, 0.18);
}

.button.primary { background: var(--blue); color: #ffffff; }
.button.primary:hover { background: var(--blue-strong); color: #ffffff; }

.btn-icon { width: 18px; height: 18px; }

.btn-logo {
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
  max-height: 22px;
  object-fit: contain;
}

.btn-logo-myphrase {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.btn-logo-totio {
  width: 34px;
  height: auto;
}

.btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-badge-in { font-size: 0.68rem; font-style: italic; }

/* featured project card */
.featured-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: var(--content-max);
  aspect-ratio: 2.618 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0b1220;
  box-shadow: var(--shadow-deep);
  color: #ffffff;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.featured-card:hover { transform: translateY(-3px); color: #ffffff; }

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(30px, 3.82vw, 62px);
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.64) var(--gold-minor), rgba(11, 18, 32, 0.12) var(--gold-major), rgba(11, 18, 32, 0.04) 100%);
  text-align: left;
  align-items: flex-start;
}

.featured-kicker {
  color: #4d8bff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.featured-title {
  margin: 0;
  max-width: var(--measure-narrow);
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 720;
  letter-spacing: 0;
}

.featured-desc {
  max-width: 377px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
}

.featured-divider {
  display: block;
  width: 96px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  transition: transform 200ms ease;
}

.cta-arrow svg { width: 22px; height: 22px; }
.featured-card:hover .cta-arrow { transform: translateX(4px); }

/* sections */
.section { padding: var(--section-y) var(--page-gutter); }
.section-follow { margin-top: 32px; }

.section-heading { max-width: var(--measure); margin-bottom: clamp(34px, 3.82vw, 50px); }
.section-heading.wide { max-width: var(--measure-wide); }
.section-kicker { display: block; margin-bottom: 14px; }

.section-heading > p:not(.section-kicker),
.case-copy > p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.5;
}

/* profile */
.profile { background: var(--surface-soft); }

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.618fr) minmax(0, 1fr);
  gap: var(--grid-gap);
}

.profile-grid article,
.project,
.case-card,
.photo-card,
.case-points article,
.skill-grid article,
.note-list article {
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.profile-grid article { padding: var(--card-pad); min-height: 220px; }

.profile-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.profile-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

/* work */
.work, .case-index, .skills { background: var(--page); }

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: var(--grid-gap);
}

.project {
  min-height: 430px;
  padding: var(--card-pad);
  overflow: hidden;
  scroll-margin-top: 90px;
}

.project-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(360px, 1fr);
  gap: 0;
  min-height: 520px;
  padding: 0;
}

.project-media {
  min-height: 520px;
  background: #0b1220;
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4.236vw, 68px);
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.project-topline span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 560;
}

.project h3, .project-body h3 { margin-top: 10px; }

.project p:not(.project-label) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.spec-list li {
  display: grid;
  grid-template-columns: minmax(96px, 0.618fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list.compact li { grid-template-columns: minmax(88px, 0.5fr) minmax(0, 1.118fr); }

.spec-list span { color: var(--muted); font-size: 0.9rem; }
.spec-list strong { font-size: 0.96rem; font-weight: 650; }

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 26px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 600;
}

.text-link::after {
  content: "\2192";
  margin-left: 0.4em;
  transition: transform 180ms ease;
}

.text-link:hover::after { transform: translateX(3px); }

.reference-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.reference-list a {
  color: var(--blue);
  font-weight: 600;
}

/* case study */
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.618fr);
  gap: clamp(28px, 3vw, 40px);
  align-items: start;
  background: var(--surface-soft);
}

.case-copy { padding-right: clamp(0px, 3vw, 36px); }

.case-media {
  overflow: hidden;
  scroll-margin-top: 90px;
  border-radius: var(--radius-md);
  background: #000000;
  box-shadow: var(--shadow-card-hover);
}

.case-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  background: #000000;
}

.case-media p,
.case-media figcaption {
  padding: 16px 18px 18px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.92rem;
}

.case-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: var(--grid-gap);
}

.case-points article { min-height: 200px; padding: var(--card-pad); }

.case-points p {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.36;
}

/* case study index */
.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.case-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: var(--card-pad);
  scroll-margin-top: 90px;
}

.case-card::before {
  content: "";
  display: block;
  height: clamp(144px, 11.8vw, 178px);
  margin: calc(0px - var(--card-pad)) calc(0px - var(--card-pad)) clamp(24px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line);
}

.product-case-card::before {
  background:
    radial-gradient(circle at 18% 68%, rgba(20, 99, 255, 0.22) 0 18px, transparent 19px),
    linear-gradient(90deg, rgba(20, 99, 255, 0.1) 0 20%, transparent 20%),
    linear-gradient(135deg, #ffffff, #e7f0ff);
}

.localization-case-card::before {
  background:
    radial-gradient(circle at 80% 32%, rgba(0, 128, 96, 0.22) 0 20px, transparent 21px),
    linear-gradient(90deg, rgba(0, 128, 96, 0.1) 0 20%, transparent 20%),
    linear-gradient(135deg, #ffffff, #e8f8ef);
}

.visual-case-card::before {
  background:
    radial-gradient(circle at 24% 32%, rgba(15, 23, 42, 0.18) 0 22px, transparent 23px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.08) 0 24%, transparent 24%),
    linear-gradient(135deg, #ffffff, #eef2f7);
}

.case-card h3 { margin-top: 10px; }

.case-card p:not(.project-label) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

/* photography */
.photography {
  background: var(--surface-soft);
  padding-inline: 0;
}

.photography .section-heading {
  margin-inline: var(--page-gutter);
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.618fr);
  grid-auto-rows: clamp(190px, 15.3vw, 260px);
  gap: clamp(12px, 1.2vw, 18px);
  padding-inline: clamp(12px, 1.2vw, 18px);
}

.photo-grid > .photo-card:nth-child(1),
.photo-grid > .photo-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius-md);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: #0b1220;
}

.photo-grid > .photo-card:nth-child(1) img,
.photo-grid > .photo-card:nth-child(6) img {
  aspect-ratio: auto;
  min-height: 100%;
}

.photo-card div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px 22px;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 0%, rgba(11, 18, 32, 0.78) 100%);
  color: #fff;
}

.photo-card .project-label {
  color: #9ec4ff;
}

.photo-card h3 {
  margin-top: 8px;
  font-size: 1.35rem;
  color: #fff;
}

@media (max-width: 1280px) {
  .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .photo-grid > .photo-card:nth-child(1),
  .photo-grid > .photo-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* skills */
.skill-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.skill-grid article { min-height: 280px; padding: var(--card-pad); }

.skill-grid .skill-large {
  grid-column: span 1;
  background: var(--surface);
}

.skill-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* notes */
.notes { background: var(--surface-soft); }

.note-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.note-list article { min-height: 230px; padding: var(--card-pad); }

.note-list time {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.note-list h3 {
  margin-top: 14px;
  font-size: 1.45rem;
}

.note-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px var(--page-gutter);
  background: var(--page);
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

/* responsive */
@media (max-width: 980px) {
  :root {
    --section-y: clamp(66px, 8vw, 88px);
    --grid-gap: 18px;
    --card-pad: 28px;
  }

  html { scroll-padding-top: 20px; }

  h1,
  .hero h1 { font-size: 4.8rem; }

  h2 { font-size: 3rem; }
  h3 { font-size: 1.65rem; }

  .tile-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 656px;
    overflow: visible;
    margin-bottom: 52px;
  }

  .tile-rail.cael-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 656px;
  }

  .tile-rail::-webkit-scrollbar { display: none; }

  .tile {
    min-width: 0;
    min-height: 118px;
    padding: 14px 8px 16px;
  }

  .tile-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 12px;
  }

  .tile-totio { width: 64px; }
  .tile-logo-totio { width: 56px; }
  .tile-icon svg { width: 22px; height: 22px; }
  .tile-letter { font-size: 1.3rem; }
  .tile-360-label { font-size: 0.78rem; }
  .tile-title { font-size: 0.86rem; }
  .tile-sub { font-size: 0.72rem; text-align: center; }

  .hero { padding: 36px 16px 58px; }

  .profile-grid,
  .project-grid,
  .case-grid,
  .case-study,
  .case-points,
  .photo-grid,
  .skill-grid,
  .note-list,
  .project-hero {
    grid-template-columns: 1fr;
  }

  .project-hero { min-height: 0; }
  .project-media { min-height: 320px; }

  .featured-card { aspect-ratio: 4 / 3.2; }

  .featured-overlay {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.45) 0%, rgba(11, 18, 32, 0.85) 70%);
    justify-content: flex-end;
  }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 16px;
    --section-y: 60px;
    --grid-gap: 16px;
    --card-pad: 22px;
  }

  html { scroll-padding-top: 16px; }

  .tile-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
    margin-bottom: 42px;
  }
  .tile-rail.cael-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }
  .tile-rail.cael-rail .tile {
    min-width: 0;
  }
  .tile-rail::-webkit-scrollbar { display: none; }
  .tile {
    min-height: 98px;
    padding: 12px 4px 14px;
  }
  .tile-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 7px;
  }
  .tile-totio { width: 58px; }
  .tile-logo-totio { width: 52px; }
  .tile-title {
    max-width: 100%;
    font-size: 0.74rem;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .tile-sub { display: none; }

  .hero { padding: 24px 14px 44px; }
  .language-switch { justify-self: center; }
  .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .featured-card {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 { font-size: 3.55rem; }
  .hero h1 span { display: block; }
  h1 { font-size: 3.55rem; }
  h2 { font-size: 2.35rem; }
  h3 { font-size: 1.45rem; }

  .hero-lede {
    max-width: 100%;
    margin-top: 22px;
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 330px;
    margin-top: 26px;
    margin-bottom: 38px;
  }

  .hero-actions.cael-actions { max-width: 340px; }

  .hero-actions.cael-actions {
    grid-template-columns: 1fr;
    max-width: min(100%, 320px);
  }

  .button {
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero-actions .button[aria-label="Totio"] {
    grid-column: 1 / -1;
    justify-self: center;
    width: 76px;
  }

  .btn-logo-myphrase { width: 20px; height: 20px; }
  .btn-logo-totio { width: 32px; }

  .featured-card { aspect-ratio: 4 / 3.7; border-radius: 18px; }
  .featured-overlay { padding: 22px; }
  .featured-title { max-width: 100%; font-size: 1.8rem; }
  .featured-desc { font-size: 1rem; }

  .section { padding: var(--section-y) var(--page-gutter); }
  .section-follow { margin-top: 24px; }

  .profile-grid article,
  .project,
  .project-body,
  .case-card,
  .case-points article,
  .photo-card div,
  .skill-grid article,
  .note-list article {
    padding: var(--card-pad);
  }

  .profile-grid article,
  .project,
  .case-card,
  .case-points article,
  .skill-grid article,
  .note-list article {
    min-height: auto;
  }

  .case-card {
    scroll-margin-top: 80px;
  }

  .project-hero {
    padding: var(--card-pad);
  }

  .project-hero .project-media {
    overflow: hidden;
    border-radius: calc(var(--radius-md) - 4px);
  }

  .project-hero .project-body {
    padding: var(--card-pad) 0 0;
  }

  .case-card::before {
    height: 128px;
    margin: calc(0px - var(--card-pad)) calc(0px - var(--card-pad)) 24px;
  }

  .project-media { min-height: 250px; }

  .project-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .spec-list li, .spec-list.compact li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
    padding-inline: 16px;
  }
}

/* ---------- scroll-scene (scroll-scrubbed full-screen video) ---------- */
.scroll-scene {
  position: relative;
  width: 100%;
  height: 360vh;
  margin: 0;
  background: #000;
  color: #ffffff;
  isolation: isolate;

  /* scene tokens — overridden per data-scene-tone */
  --scene-accent: #ffffff;
  --scene-accent-soft: rgba(255, 255, 255, 0.32);
  --scene-meta-ink: rgba(255, 255, 255, 0.74);
  --scene-scrim:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.25) 100%);
}

/* warm amber — laundromat / case-study */
.scroll-scene[data-scene-tone="amber"] {
  --scene-accent: #f4b266;
  --scene-accent-soft: rgba(244, 178, 102, 0.34);
  --scene-meta-ink: rgba(255, 232, 204, 0.82);
}

/* coral / red — immune system */
.scroll-scene[data-scene-tone="coral"] {
  --scene-accent: #ff6b6b;
  --scene-accent-soft: rgba(255, 107, 107, 0.32);
  --scene-meta-ink: rgba(255, 214, 214, 0.82);
  /* asymmetric scrim: stronger on left + bottom-left, lighter on top-right
     so the cellular focal point stays exposed and text reads cleanly */
  --scene-scrim:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(96deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

.scroll-scene-short {
  height: 260vh;
}

.scrub-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.scrub-poster,
.scrub-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  pointer-events: none;
}

.scrub-poster {
  z-index: 0;
}

.scrub-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.scroll-scene.has-video-frame .scrub-video {
  opacity: 1;
}

.scrub-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--scene-scrim);
  pointer-events: none;
}

.scrub-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.scrub-step {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  bottom: clamp(64px, 12vh, 140px);
  max-width: 640px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.scrub-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scrub-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.scrub-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--scene-accent);
  opacity: 0.85;
}

.scrub-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--scene-meta-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scrub-meta li {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.scrub-meta li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--scene-accent-soft);
}

.scrub-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 12px 20px;
  border: 1px solid var(--scene-accent);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: auto;
  transition: background 220ms ease, transform 220ms ease;
}

.scrub-cta::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
  color: var(--scene-accent);
  transition: transform 220ms ease;
}

.scrub-cta:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.scrub-cta:hover::after {
  transform: translateX(3px);
}

.scrub-title {
  margin: 0;
  color: #ffffff;
  font-size: 4.6rem;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.scrub-body {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.42;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.scrub-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scrub-hint::after {
  content: "";
  width: 18px;
  height: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 30%, transparent 30%) center / 2px 6px no-repeat;
  animation: scrub-hint-dot 1.6s ease-in-out infinite;
}

@keyframes scrub-hint-dot {
  0%   { background-position: center 6px; opacity: 0.9; }
  50%  { background-position: center 12px; opacity: 0.45; }
  100% { background-position: center 6px; opacity: 0.9; }
}

.scrub-progress {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  right: clamp(20px, 6vw, 92px);
  bottom: clamp(28px, 4vh, 44px);
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scrub-progress-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.scrub-progress-count-current {
  color: var(--scene-accent);
  font-size: 0.86rem;
}

.scrub-progress-count-sep {
  opacity: 0.5;
}

.scrub-progress-count-total {
  opacity: 0.7;
}

.scrub-progress-track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: visible;
}

.scrub-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--scene-accent-soft), var(--scene-accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

.scrub-progress-ticks {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.scrub-progress-ticks span {
  width: 1px;
  height: 8px;
  margin-top: -3px;
  background: rgba(255, 255, 255, 0.25);
}

.scrub-progress-ticks span:first-child,
.scrub-progress-ticks span:last-child {
  background: transparent;
}

/* graceful fallback: reduced motion / no JS */
.scroll-scene.reduced-motion {
  height: auto;
}

.scroll-scene.reduced-motion .scrub-stage {
  position: static;
  height: auto;
  min-height: 80vh;
  padding: clamp(48px, 8vh, 96px) 0;
}

.scroll-scene.reduced-motion .scrub-overlay.static .scrub-step {
  position: static;
  opacity: 1;
  transform: none;
  margin: 32px clamp(20px, 6vw, 92px);
}

@media (max-width: 700px) {
  .scroll-scene { height: 320vh; }
  .scroll-scene-short { height: 220vh; }

  .scrub-step {
    left: 18px;
    right: 18px;
    bottom: 84px;
    max-width: none;
  }

  .scrub-hint { display: none; }
  .scrub-title { font-size: 2.4rem; }
  .scrub-body { font-size: 1.08rem; }

  .scrub-meta {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    gap: 4px 10px;
  }

  .scrub-cta {
    padding: 10px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .scrub-progress {
    left: 18px;
    right: 18px;
    bottom: 22px;
    gap: 14px;
    font-size: 0.64rem;
    letter-spacing: 0.2em;
  }

  .scrub-progress-count-current { font-size: 0.76rem; }
}

/* =========================================================
   Fluid layer — soft motion, hover glow, scroll reveal
   ========================================================= */

/* Hero keeps soft background accents behind everything via negative z-index + isolate. */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
  width: 560px;
  height: 560px;
  bottom: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(0, 128, 96, 0.28), rgba(0, 128, 96, 0) 70%);
  opacity: 0.6;
  animation: blob-float-b 28s ease-in-out infinite;
}

@keyframes blob-float-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-70px, -50px, 0) scale(1.12); }
}

/* Soft drifting gradient behind the case-study index too,
   so the page doesn't snap between solid bands. */
.profile,
.notes,
.photography,
.case-index,
.work,
.skills {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.profile::before,
.notes::before,
.case-index::before,
.work::before,
.skills::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(20, 99, 255, 0.18), rgba(20, 99, 255, 0) 70%);
  pointer-events: none;
}

.notes::before,
.skills::before {
  inset: auto auto -10% -10%;
  background: radial-gradient(circle, rgba(0, 128, 96, 0.16), rgba(0, 128, 96, 0) 70%);
}

/* Animated shimmer on the hero headline.
   Falls back to solid ink colour when reduced-motion is on. */
.hero h1 {
  background: linear-gradient(120deg, #0b1220 0%, #1463ff 48%, #0b1220 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: hero-shimmer 14s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Reveal-on-scroll system.
   Hidden state only activates after JS attaches `js-ready` to body,
   so users without JS still see everything. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

/* Cursor-aware glow on interactive cards.
   The radial follows --mx / --my set by JS pointermove. */
.tile,
.project:not(.project-hero),
.case-card,
.photo-card,
.skill-grid article,
.note-list article,
.profile-grid article {
  position: relative;
  overflow: hidden;
}

.tile::after,
.project:not(.project-hero)::after,
.case-card::after,
.photo-card::after,
.skill-grid article::after,
.note-list article::after,
.profile-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, -200px) var(--my, -200px),
    rgba(20, 99, 255, 0.14),
    rgba(20, 99, 255, 0) 50%
  );
  opacity: 0;
  transition: opacity 360ms ease;
  z-index: 0;
}

.tile:hover::after,
.project:not(.project-hero):hover::after,
.case-card:hover::after,
.photo-card:hover::after,
.skill-grid article:hover::after,
.note-list article:hover::after,
.profile-grid article:hover::after {
  opacity: 1;
}

/* Make sure card content stays above the glow layer. */
.tile > *,
.project > *,
.case-card > *,
.photo-card > *,
.skill-grid article > *,
.note-list article > *,
.profile-grid article > * {
  position: relative;
  z-index: 1;
}

/* Smoother default motion curves for cards. */
.tile,
.project,
.case-card,
.photo-card,
.skill-grid article,
.note-list article,
.profile-grid article,
.button,
.featured-card {
  transition:
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 320ms ease,
    background 320ms ease,
    color 320ms ease;
}

/* Featured card: gentle inner zoom on hover (JS adds pointer parallax). */
.featured-card img {
  transition: transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.featured-card:hover img {
  transform: scale(1.04);
}

/* Honour reduced-motion: no blobs, no shimmer, no reveal slide. */
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .profile::before,
  .notes::before,
  .case-index::before,
  .work::before,
  .skills::before {
    animation: none;
  }

  .hero h1 {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--ink);
            color: var(--ink);
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .featured-card img,
  .featured-card:hover img {
    transform: none;
  }
}

/* =========================================================
   Fluid layer v2 — global ambience, tilt, magnetism, polish
   ========================================================= */

/* Animatable angle for the rotating conic border on the featured card. */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Scroll progress bar — thin gradient ribbon at the very top. */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1463ff, #00b894, #1463ff);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 60;
  pointer-events: none;
  will-change: transform, background-position;
  animation: scroll-progress-shimmer 6s linear infinite;
}

@keyframes scroll-progress-shimmer {
  to { background-position: 200% 0; }
}

/* Cursor-follow ambient halo across the whole page. */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 99, 255, 0.10), rgba(20, 99, 255, 0) 60%);
  transform: translate(var(--cursor-x, -200vw), var(--cursor-y, -200vh)) translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

/* Subtle SVG grain to break up flat surfaces. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.038;
  mix-blend-mode: multiply;
}

/* Card tilt: applied only while hovering, so it composes cleanly with the
   reveal animation. JS sets --rx / --ry from pointer position. */
.tile:hover {
  transform: perspective(900px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateY(-4px);
}

.project:not(.project-hero):hover,
.case-card:hover,
.photo-card:hover,
.skill-grid article:hover,
.note-list article:hover,
.profile-grid article:hover {
  transform: perspective(900px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* Magnetic buttons — pulled gently toward the cursor by JS via --mag-x/y. */
.hero-actions .button {
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
}

.hero-actions .button:hover {
  transform: translate(var(--mag-x, 0px), calc(var(--mag-y, 0px) - 1px));
}

/* Rotating conic-gradient border on the featured card — the centerpiece. */
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    rgba(20, 99, 255, 0.85) 0%,
    rgba(0, 184, 148, 0.55) 25%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(0, 184, 148, 0.55) 75%,
    rgba(20, 99, 255, 0.85) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 5;
  pointer-events: none;
  opacity: 0.85;
  animation: spin-angle 14s linear infinite;
}

@keyframes spin-angle {
  to { --angle: 360deg; }
}

/* Hero blobs get a third companion for more depth. */
.hero {
  --hero-blob-3-x: 0px;
  --hero-blob-3-y: 0px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 32%;
  left: 50%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(125, 90, 255, 0.22), rgba(125, 90, 255, 0) 70%);
  opacity: 0.55;
  pointer-events: none;
  transform: translate(-50%, -50%) translate(var(--hero-blob-3-x), var(--hero-blob-3-y));
  z-index: -1;
  animation: blob-float-c 26s ease-in-out infinite;
}

.hero-copy {
  position: relative;
}

@keyframes blob-float-c {
  0%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate(-50%, -50%) translate3d(40px, -50px, 0) scale(1.15); }
}

/* Reduced-motion: kill the new layers. */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  body::before,
  body::after,
  .featured-card::before,
  .hero-copy::before {
    display: none;
  }

  .tile:hover,
  .project:not(.project-hero):hover,
  .case-card:hover,
  .photo-card:hover,
  .skill-grid article:hover,
  .note-list article:hover,
  .profile-grid article:hover {
    transform: translateY(-2px);
  }

  .hero-actions .button,
  .hero-actions .button:hover {
    transform: translateY(0);
  }
}
