:root {
  --navy-950: #03143b;
  --navy-900: #061f57;
  --navy-800: #08357a;
  --blue-700: #0575b5;
  --blue-600: #078aca;
  --green-600: #008f2c;
  --green-500: #00ad34;
  --yellow-400: #ffd000;
  --cream-50: #f7f7f2;
  --white: #ffffff;
  --ink: #0e2b45;
  --muted: #5e7182;
  --shadow: 0 24px 70px rgba(2, 24, 46, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 8%, rgba(30, 95, 155, 0.13), transparent 32rem),
    linear-gradient(180deg, #edf3f4 0%, #f7f7f2 45%, #eef3f3 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, 880px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream-50);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 730px;
  padding: 42px 28px 76px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green-500) 0 44%, var(--yellow-400) 44% 64%, var(--blue-600) 64% 100%);
  content: "";
}

.brand {
  display: block;
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
}

.brand-white {
  margin: 0 auto 52px;
}

.portrait-frame {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.portrait-ring {
  width: 282px;
  height: 282px;
  padding: 7px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-400), var(--green-500) 52%, var(--blue-600));
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.portrait {
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid var(--navy-900);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 8%;
}

.verified {
  position: absolute;
  right: 10px;
  bottom: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid var(--navy-900);
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-copy {
  margin-top: 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--green-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.role {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  font-weight: 550;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 32px;
}

.social-link {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.social-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.social-icon-svg {
  display: block;
  width: 23px;
  height: 23px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-icon-facebook {
  width: 25px;
  height: 25px;
}

.social-facebook {
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  padding-top: 0;
}

.social-x {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.social-threads {
  background: #050505;
  font-family: Arial, sans-serif;
}

.threads-glyph {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.12em;
  transform: translateX(-1px);
}

.social-youtube { background: #ff0033; }
.social-whatsapp { background: #20b95a; }
.social-tiktok { background: #050505; font-size: 1.25rem; }
.social-linkedin { background: #0a66c2; font-size: .88rem; }
.social-site { background: rgba(255, 255, 255, .18); font-size: 1.2rem; }

.youtube-glyph {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  transform: translateX(1px);
}

.social-instagram {
  color: var(--white);
}

.instagram-glyph {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-glyph::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.instagram-glyph::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.social-link:hover .social-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045);
  transform: rotate(-4deg);
}

.social-link:hover .social-facebook {
  background: #1877f2;
  transform: rotate(4deg);
}

.social-link:hover .social-threads,
.social-link:hover .social-x,
.social-link:hover .social-tiktok {
  background: #050505;
  transform: rotate(-4deg);
}

.social-link:hover .social-youtube { background: #ff0033; transform: rotate(4deg); }
.social-link:hover .social-whatsapp { background: #20b95a; transform: rotate(-4deg); }
.social-link:hover .social-linkedin { background: #0a66c2; transform: rotate(4deg); }

.access-section {
  position: relative;
  padding: 68px 34px 76px;
  background: #07336f;
}

.access-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green-500) 0 44%, var(--yellow-400) 44% 64%, var(--blue-600) 64% 100%);
  content: "";
}

.access-section .section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.access-section .section-kicker {
  color: #77db8d;
}

.access-section .section-heading h2 {
  color: var(--white);
}

.featured-section {
  padding: 64px 34px 62px;
  background: var(--cream-50);
}

.featured-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 5px 18px;
}

.featured-heading .section-kicker {
  grid-column: 1 / -1;
}

.featured-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.featured-heading > p:last-child {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: right;
}

.featured-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.featured-card {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(10, 49, 88, 0.12);
  border-radius: 25px;
  background: var(--navy-900);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(7, 39, 70, 0.17);
}

.featured-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 500ms ease;
}

.featured-card-second > img {
  object-position: center 34%;
}

.featured-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 53, 0.96) 0%, rgba(4, 28, 53, 0.72) 42%, rgba(4, 28, 53, 0.08) 76%),
    linear-gradient(0deg, rgba(4, 28, 53, 0.38), transparent 55%);
  content: "";
}

.featured-card-second::after {
  background:
    linear-gradient(90deg, rgba(4, 28, 53, 0.95) 0%, rgba(4, 28, 53, 0.67) 43%, rgba(4, 28, 53, 0.05) 78%),
    linear-gradient(0deg, rgba(4, 28, 53, 0.35), transparent 55%);
}

.featured-overlay {
  display: flex;
  width: min(58%, 350px);
  height: 100%;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  color: var(--white);
}

.featured-label {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--navy-950);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured-card-second .featured-label {
  background: var(--green-500);
  color: var(--white);
}

.featured-card-second .featured-overlay {
  align-items: flex-start;
  margin-left: 0;
  text-align: left;
}

.featured-overlay h3 {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.featured-cta {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--green-500);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.about-content h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.link-stack {
  display: grid;
  gap: 18px;
}

.banner-link-card {
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 479;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 15px 30px rgba(4, 28, 53, 0.24);
}

.banner-link-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.banner-link-card {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.banner-link-card:hover {
  box-shadow: 0 20px 38px rgba(4, 28, 53, 0.34);
  transform: translateY(-3px);
}

.action-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 19px;
  padding: 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 14px;
  background:
    linear-gradient(110deg, rgba(0, 159, 220, 0.28), transparent 48%),
    linear-gradient(135deg, #075fa4, #084784);
  box-shadow: 0 15px 30px rgba(4, 28, 53, 0.2);
}

.action-card::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -42px;
  width: 270px;
  height: 112px;
  background: url("/media/links/logo-marconi-branca.svg") center / contain no-repeat;
  content: "";
  opacity: 0.075;
  transform: translateY(-50%);
}

.action-card.has-background-image::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(3, 20, 59, 0.94) 0%, rgba(3, 20, 59, 0.74) 48%, rgba(3, 20, 59, 0.42) 100%),
    var(--action-image) center / cover no-repeat;
  opacity: 1;
  transform: none;
}

a.action-card {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.action-card:hover {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 38px rgba(4, 28, 53, 0.3);
  transform: translateY(-3px);
}

.action-icon {
  display: grid;
  flex: 0 0 68px;
  height: 68px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: linear-gradient(145deg, #30d44f, #079c38);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 950;
  box-shadow:
    0 10px 20px rgba(4, 28, 53, 0.28),
    inset 0 3px 5px rgba(255, 255, 255, 0.35);
}

.card-glyph {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  color: currentColor;
}

.globe-glyph {
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.globe-glyph::before {
  position: absolute;
  inset: 3px 7px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.globe-glyph::after {
  position: absolute;
  top: 50%;
  right: 1px;
  left: 1px;
  border-top: 2px solid currentColor;
  content: "";
  transform: translateY(-50%);
}

.community-glyph::before {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
  box-shadow:
    -10px 6px 0 -2px currentColor,
    10px 6px 0 -2px currentColor;
  content: "";
  transform: translateX(-50%);
}

.community-glyph::after {
  position: absolute;
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 10px;
  border: 2.5px solid currentColor;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 0;
  content: "";
}

.contact-glyph {
  width: 27px;
  height: 21px;
  margin-top: 1px;
  border: 2.5px solid currentColor;
  border-radius: 7px;
}

.contact-glyph::before {
  position: absolute;
  bottom: -6px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-bottom: 2.5px solid currentColor;
  border-left: 2.5px solid currentColor;
  background: inherit;
  content: "";
  transform: rotate(-35deg) skew(-8deg);
}

.contact-glyph::after {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 6px 0 currentColor, 12px 0 currentColor;
  content: "";
}

.download-glyph::before {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 10px;
  height: 17px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.download-glyph::after {
  position: absolute;
  right: 2px;
  bottom: 1px;
  left: 2px;
  height: 8px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  border-left: 2.5px solid currentColor;
  border-radius: 0 0 4px 4px;
  content: "";
}

.action-card-whatsapp .action-icon,
.action-card-contact .action-icon {
  background: linear-gradient(145deg, #30d44f, #079c38);
  color: var(--white);
}

.action-card-site {
  background:
    linear-gradient(110deg, rgba(255, 209, 43, 0.17), transparent 50%),
    linear-gradient(135deg, #0a69ad, #08467d);
}

.action-card-site .action-icon {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, var(--yellow-400), #eba812);
  color: var(--navy-950);
}

.action-card-contact {
  background:
    linear-gradient(110deg, rgba(59, 185, 88, 0.22), transparent 50%),
    linear-gradient(135deg, #0a64a7, #073f78);
}

.action-card-press .action-icon {
  background: linear-gradient(145deg, #ffd72d, #e9a90b);
  color: var(--navy-900);
}

.action-card-press {
  background:
    linear-gradient(110deg, rgba(255, 209, 43, 0.16), transparent 50%),
    linear-gradient(135deg, #09629e, #064073);
}

.action-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.action-copy strong {
  color: var(--white);
  font-size: clamp(1rem, 3vw, 1.22rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.action-copy small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.action-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
}

.status-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--navy-950);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.is-pending {
  opacity: 0.9;
}

.about {
  padding: 56px 34px 34px;
  background: var(--navy-900);
  color: var(--white);
}

.about-photo-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(22, 135, 198, 0.5), rgba(59, 185, 88, 0.42));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.about-photo-wrap-artwork {
  aspect-ratio: 4 / 5;
}

.about-photo-wrap-artwork .about-photo {
  object-position: center 56%;
}

.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 35%;
}

.about-photo-wrap::after {
  position: absolute;
  inset: 48% 5px 5px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(transparent, rgba(4, 28, 53, 0.44));
  content: "";
  pointer-events: none;
}

.about-tag {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(4, 28, 53, 0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.about-content {
  padding: 34px 4px 28px;
}

.about-content .section-kicker {
  color: var(--yellow-400);
}

.about-content h2 {
  color: var(--white);
}

.accent-line {
  width: 92px;
  height: 5px;
  margin: 22px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-500), var(--yellow-400));
}

.about-content p:not(.section-kicker) {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  color: var(--white);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 30px 46px;
  background: var(--white);
  text-align: center;
}

.brand-color {
  width: min(100%, 250px);
  margin-bottom: 18px;
}

.footer p {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer .footer-note {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

a:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .hero {
    min-height: 770px;
    padding-top: 52px;
  }

  .brand-white {
    width: min(100%, 320px);
  }

  .portrait-ring {
    width: 320px;
    height: 320px;
  }

  .access-section,
  .about,
  .featured-section {
    padding-right: 58px;
    padding-left: 58px;
  }

  .action-card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .banner-link-card {
    border-radius: 12px;
  }

  .about-content {
    padding: 42px 12px 36px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 690px;
    padding: 28px 20px 62px;
  }

  .brand-white {
    width: min(100%, 230px);
    margin-bottom: 40px;
  }

  .portrait-ring {
    width: 234px;
    height: 234px;
  }

  .verified {
    right: 3px;
    bottom: 15px;
    width: 43px;
    height: 43px;
  }

  .social-link {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .social-symbol {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .access-section,
  .about,
  .featured-section {
    padding: 54px 20px 60px;
  }

  .featured-section {
    padding-bottom: 50px;
  }

  .featured-heading {
    display: block;
  }

  .featured-heading > p:last-child {
    margin-top: 10px;
    text-align: left;
  }

  .featured-list {
    gap: 14px;
    margin-top: 22px;
  }

  .featured-card,
  .featured-overlay {
    min-height: 240px;
  }

  .featured-card {
    border-radius: 19px;
  }

  .featured-card > img {
    object-position: 62% 22%;
  }

  .featured-card-second > img {
    object-position: 64% 34%;
  }

  .featured-card::after,
  .featured-card-second::after {
    background:
      linear-gradient(90deg, rgba(4, 28, 53, 0.94) 0%, rgba(4, 28, 53, 0.66) 54%, rgba(4, 28, 53, 0.08) 88%),
      linear-gradient(0deg, rgba(4, 28, 53, 0.34), transparent 55%);
  }

  .featured-card-second::after {
    background:
      linear-gradient(90deg, rgba(4, 28, 53, 0.94) 0%, rgba(4, 28, 53, 0.66) 54%, rgba(4, 28, 53, 0.08) 88%),
      linear-gradient(0deg, rgba(4, 28, 53, 0.34), transparent 55%);
  }

  .featured-overlay {
    width: 66%;
    padding: 23px;
  }

  .featured-label {
    margin-bottom: 11px;
  }

  .featured-overlay h3 {
    font-size: clamp(1.42rem, 7vw, 1.9rem);
  }

  .featured-cta {
    margin-top: 17px;
    font-size: 0.64rem;
  }

  .action-card {
    min-height: 104px;
    gap: 13px;
    padding: 15px 14px;
    border-radius: 12px;
  }

  .action-card::before {
    right: -76px;
    width: 240px;
    height: 98px;
    opacity: 0.07;
  }

  .action-icon {
    flex-basis: 56px;
    height: 56px;
    border-width: 4px;
  }

  .status-pill {
    padding: 6px 8px;
    font-size: 0.57rem;
  }

  .action-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .about-photo-wrap {
    aspect-ratio: 16 / 9;
    border-radius: 19px;
  }

  .about-photo {
    border-radius: 14px;
    object-position: 55% 35%;
  }

  .about-photo-wrap-artwork {
    aspect-ratio: 4 / 5;
  }

  .about-photo-wrap-artwork .about-photo {
    object-position: center 56%;
  }

  .about-photo-wrap::after {
    border-radius: 0 0 14px 14px;
  }

  .about-content {
    padding: 30px 2px 10px;
  }

  .about-content p:not(.section-kicker) {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .brand-color {
    width: min(100%, 210px);
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
