:root {
  --black: #070707;
  --black-soft: #0e0e0f;
  --panel: #121214;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #9b9b9f;
  --white: #f5f5f2;
  --red: #e31b23;
  --red-dark: #a80f15;
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: #fff;
  color: #000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(5.5rem, 11vw, 10rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 2rem;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, height 0.3s;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 7, 7, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.65rem;
}

.brand-mark {
  width: 42px;
  fill: var(--red);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-name span {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.desktop-nav a,
.header-cta {
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: #c2c2c4;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-cta {
  justify-self: end;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--red);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("/assets/polishark-hero.webp") 50% 50% / cover no-repeat;
  transform: scale(1.02);
  animation: hero-in 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 5, 0.96) 0%, rgba(4, 4, 5, 0.78) 30%, rgba(4, 4, 5, 0.13) 69%, rgba(4, 4, 5, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, transparent 33%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.hero-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  align-items: center;
  padding-top: 80px;
}

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

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #c8c8ca;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.process h2,
.course h2,
.about h2,
.contact h2,
.links-profile h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1.8rem;
  font-size: clamp(4.6rem, 9.3vw, 8.6rem);
}

.hero h1 em,
.course h2 em,
.contact h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy > p {
  max-width: 530px;
  margin: 2rem 0 0;
  color: #b9b9bb;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-height: 54px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

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

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: #fc242c;
}

.text-link {
  color: #ddd;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 0.5rem;
  color: var(--red);
}

.hero-stamp {
  justify-self: end;
  align-self: end;
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  margin-bottom: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(7px);
  line-height: 1;
  transform: rotate(6deg);
}

.hero-stamp span,
.hero-stamp small {
  font-size: 0.49rem;
  letter-spacing: 0.18em;
}

.hero-stamp span {
  align-self: end;
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 2rem;
}

.hero-stamp small {
  align-self: start;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
}

.hero-footer > span {
  padding: 1.4rem 2rem 1.4rem 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.hero-footer > span + span {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.hero-footer strong {
  margin-left: 0.9rem;
  color: #d7d7d8;
  font-family: var(--body);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.manifesto {
  background: var(--white);
  color: #0b0b0c;
}

.manifesto .section-index {
  color: #707074;
}

.statement p {
  max-width: 1020px;
  margin: 2.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 6.2vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.statement strong {
  color: var(--red);
}

.services {
  background: #0b0b0c;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr;
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.process h2,
.course h2,
.about h2 {
  margin-top: 1.6rem;
  font-size: clamp(3.3rem, 6.7vw, 6.5rem);
}

.section-heading > p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.service-list {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 56px 90px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  min-height: 270px;
  padding: 3rem 2rem 3rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding 0.3s;
}

.service-card:hover {
  padding-left: 2rem;
  background: #101012;
}

.service-number {
  color: #656569;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
}

.service-icon svg {
  width: 38px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6;
}

.service-card > div:last-child {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.card-tag {
  grid-column: 1 / -1;
  margin-bottom: -0.8rem;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  align-self: center;
  white-space: nowrap;
  border-bottom: 1px solid #515154;
  padding-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a span {
  margin-left: 0.5rem;
  color: var(--red);
}

.process {
  position: relative;
  background: var(--white);
  color: #0b0b0c;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(450px, 1.2fr);
  gap: clamp(4rem, 10vw, 9rem);
}

.process .section-index {
  color: #666;
}

.process-intro > p {
  max-width: 490px;
  margin: 2rem 0;
  color: #626266;
}

.button-outline {
  border-color: #1d1d1f;
  color: #111;
}

.button-outline:hover {
  background: #111;
  color: #fff;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.6rem;
  padding: 1.7rem 0;
  border-top: 1px solid #d3d3d1;
}

.process-steps li:last-child {
  border-bottom: 1px solid #d3d3d1;
}

.process-steps li > span {
  color: var(--red);
  font-family: var(--display);
  font-weight: 900;
}

.process-steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0.35rem 0 0;
  color: #707074;
  font-size: 0.92rem;
}

.course {
  position: relative;
  overflow: hidden;
  background: #090909;
}

.course-glow {
  position: absolute;
  left: -10vw;
  bottom: -35vw;
  width: 65vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.22), transparent 67%);
  pointer-events: none;
}

.course-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.course-badge {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 420px;
  aspect-ratio: 1;
}

.course-badge::before,
.course-badge::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.course-badge::before {
  inset: 0;
}

.course-badge::after {
  inset: 12%;
}

.course-badge svg {
  width: 65%;
  fill: none;
  stroke: rgba(255,255,255,.12);
}

.course-badge svg path {
  fill: var(--red);
  stroke: none;
}

.course-badge span {
  position: absolute;
  text-align: center;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
}

.course-badge strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.course-copy > p {
  max-width: 590px;
  margin: 2rem 0;
  color: var(--muted);
}

.course-copy ul {
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
}

.course-copy li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.course-copy li::before {
  content: "✓";
  margin-right: 0.8rem;
  color: var(--red);
}

.about {
  background: #111113;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(4rem, 12vw, 12rem);
}

.about-copy {
  padding-top: 2.2rem;
}

.about-copy .lead {
  margin-top: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
}

.about-signature {
  display: grid;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-signature span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
}

.about-signature small {
  color: var(--muted);
}

.contact {
  position: relative;
  padding-block: clamp(5rem, 11vw, 10rem) 3rem;
  overflow: hidden;
  background: var(--red);
}

.contact::before {
  content: "POLI SHARK";
  position: absolute;
  right: -0.06em;
  top: -0.1em;
  color: rgba(0, 0, 0, 0.09);
  font-family: var(--display);
  font-size: 22vw;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
}

.contact-inner {
  position: relative;
}

.contact .section-index {
  color: rgba(255, 255, 255, 0.78);
}

.contact h2 {
  margin-top: 2rem;
  font-size: clamp(4rem, 9vw, 9rem);
}

.contact h2 em {
  color: #090909;
}

.button-light {
  margin-top: 2.5rem;
  background: #fff;
  color: #111;
}

.button-light:hover {
  background: #111;
  color: #fff;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(5rem, 11vw, 10rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-meta > div {
  display: grid;
}

.contact-meta small {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-meta span,
.contact-meta a {
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer {
  padding-block: 2.1rem;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-grid p,
.footer-grid > a:last-child {
  color: #717175;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > a:last-child {
  justify-self: end;
}

.floating-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: #171719;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--red);
}

.floating-whatsapp svg {
  width: 27px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.02); }
}

/* Link in bio */
.links-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 15%, rgba(55, 55, 60, 0.25), transparent 30%),
    #070707;
}

.links-shell {
  position: relative;
  width: min(100%, 720px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 4rem max(1.25rem, 5vw) 2rem;
  overflow: hidden;
}

.links-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 48%);
}

.links-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.links-orb-one {
  width: 250px;
  height: 250px;
  top: -160px;
  right: -100px;
  border: 1px solid rgba(227, 27, 35, 0.4);
  box-shadow: inset 0 0 80px rgba(227, 27, 35, 0.1);
}

.links-orb-two {
  width: 150px;
  height: 150px;
  left: -100px;
  top: 45%;
  background: rgba(227, 27, 35, 0.08);
  filter: blur(30px);
}

.links-profile {
  position: relative;
  z-index: 2;
  text-align: center;
}

.links-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.links-logo .brand-mark {
  width: 50px;
}

.links-logo .brand-name {
  font-size: 1.65rem;
}

.links-profile h1 {
  margin-top: 2.2rem;
  font-size: clamp(2.8rem, 9vw, 4.9rem);
}

.links-profile > p {
  max-width: 450px;
  margin: 1.3rem auto 2.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.link-stack {
  display: grid;
  gap: 0.8rem;
}

.link-card {
  display: grid;
  grid-template-columns: 50px 1fr 24px;
  gap: 1rem;
  align-items: center;
  min-height: 86px;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(18, 18, 20, 0.84);
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 27, 35, 0.65);
  background: #171719;
}

.link-card.link-primary {
  border-color: var(--red);
  background: var(--red);
}

.link-card.link-primary:hover {
  background: #f02028;
}

.link-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--red);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 900;
}

.link-primary .link-icon {
  color: #fff;
}

.link-card > span:nth-child(2) {
  display: grid;
}

.link-card strong {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.link-card small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.link-primary small {
  color: rgba(255,255,255,.75);
}

.link-card b {
  color: var(--red);
}

.link-primary b {
  color: #fff;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.8rem;
}

.social-row a {
  color: #aaa;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partners {
  position: relative;
  z-index: 2;
  margin-top: 4.5rem;
  text-align: center;
}

.partners-label {
  color: #737377;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.partner-marquee {
  margin: 1.3rem calc(-1 * max(1.25rem, 5vw)) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.partner-track span {
  display: grid;
  place-items: center;
  width: 180px;
  height: 92px;
  color: #68686b;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.partners-note {
  display: inline-block;
  margin-top: 0.8rem;
  color: #515155;
  font-size: 0.62rem;
}

.links-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: #55555a;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

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

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.25s;
  }

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

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

  .mobile-nav {
    position: fixed;
    inset: 71px 0 auto;
    display: grid;
    padding: 1rem var(--pad) 2rem;
    background: rgba(7,7,7,.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }

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

  .mobile-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-nav a:last-child {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: var(--red);
    border: 0;
    font-family: var(--body);
    font-size: 0.7rem;
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4,4,5,.95), rgba(4,4,5,.58) 60%, rgba(4,4,5,.25)), linear-gradient(0deg, rgba(5,5,5,.9), transparent 45%);
  }

  .service-card > div:last-child {
    grid-template-columns: 1fr 1fr;
  }

  .service-card a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .mobile-nav {
    inset-block-start: 67px;
  }

  .hero {
    min-height: 780px;
    height: 100svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4,4,5,.94), rgba(4,4,5,.48)), linear-gradient(0deg, rgba(5,5,5,.94), transparent 60%);
  }

  .hero-grid {
    display: flex;
    align-items: flex-end;
    padding-bottom: 155px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .hero-copy > p {
    max-width: 420px;
    margin-top: 1.4rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.7rem;
  }

  .hero-stamp {
    display: none;
  }

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

  .hero-footer > span {
    display: none;
  }

  .hero-footer > span:first-child {
    display: block;
    padding: 1.2rem 0;
  }

  .section-heading,
  .process-grid,
  .course-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .section-heading h2,
  .process h2,
  .course h2,
  .about h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .service-card {
    grid-template-columns: 36px 1fr;
    gap: 1.2rem;
    padding: 2.2rem 0;
  }

  .service-card:hover {
    padding-left: 0;
  }

  .service-icon {
    display: none;
  }

  .service-card > div:last-child {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .card-tag,
  .service-card a {
    grid-column: auto;
  }

  .process-grid,
  .course-grid,
  .about-grid {
    gap: 3.5rem;
  }

  .course-badge {
    width: min(78vw, 350px);
    margin-inline: auto;
  }

  .contact h2 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

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

  .footer-grid p {
    display: none;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-copy > p {
    font-size: 0.91rem;
  }

  .button {
    width: 100%;
  }

  .statement p {
    font-size: 2.65rem;
  }

  .link-card {
    grid-template-columns: 42px 1fr 18px;
    padding-inline: 0.8rem;
  }

  .link-icon {
    width: 40px;
    height: 40px;
  }

  .link-card strong {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .partner-track { animation: none; }
}
