@font-face {
  font-family: "Anton";
  src: url("assets/fonts/anton-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal italic;
  font-weight: 400 700;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  --navy: #0e0c3b;
  --navy-soft: #181655;
  --ink: #111520;
  --cobalt: #2f56d9;
  --cobalt-deep: #243fa8;
  --lime: #c9f06a;
  --beige: #f1eee6;
  --paper: #fbfbf7;
  --white: #ffffff;
  --muted: #606875;
  --line: rgba(17, 21, 32, 0.2);
  --shell: 1440px;
  --pad: clamp(24px, 5vw, 76px);
  --header-height: 88px;
  --radius: 8px;
  --shadow: 8px 8px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(84px, 10vw, 150px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(17, 21, 32, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100%, var(--shell));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  width: clamp(190px, 18vw, 254px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 48px);
  color: var(--navy);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding-block: 9px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav .resource-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 7px;
  border: 1px solid rgba(14, 12, 59, 0.2);
  border-radius: 999px;
  color: var(--navy);
  background: #f3f7e8;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-nav .resource-nav-link::after {
  display: none;
}

.resource-nav-link img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: contain;
}

.resource-nav-link span {
  white-space: nowrap;
}

.resource-nav-link b {
  color: var(--cobalt);
  font-weight: 700;
}

.primary-nav .resource-nav-link:hover,
.primary-nav .resource-nav-link:focus-visible {
  border-color: var(--cobalt);
  background: var(--lime);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 28%, rgba(47, 86, 217, 0.72), transparent 33%),
    linear-gradient(118deg, var(--navy) 0%, var(--navy) 46%, #17236d 76%, var(--cobalt) 132%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(14, 12, 59, 0.4));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  min-height: min(780px, calc(100svh - var(--header-height)));
  gap: 20px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 76px 86px;
}

.hero-kicker,
.summit-date {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before,
.summit-date::before {
  width: 42px;
  height: 3px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(82px, 10vw, 168px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
}

.hero-lede {
  max-width: 700px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(21px, 2vw, 30px);
  font-style: italic;
  line-height: 1.3;
}

.hero-actions,
.summit-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 25px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
}

.button-lime {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.button-lime:hover,
.button-lime:focus-visible {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--cobalt);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
}

.button-cobalt {
  border-color: var(--cobalt);
  color: var(--white);
  background: var(--cobalt);
}

.button-cobalt:hover,
.button-cobalt:focus-visible {
  border-color: var(--white);
  background: var(--cobalt-deep);
  box-shadow: 5px 5px 0 var(--lime);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(-180px, -8vw);
  width: min(66vw, 900px);
  transform: translateY(-50%);
  pointer-events: none;
  will-change: transform;
}

.hero-visual svg {
  width: 100%;
  overflow: visible;
}

.globe-fill {
  fill: rgba(255, 255, 255, 0.025);
}

.globe-outline,
.globe-lines > * {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.4;
}

.globe-outline {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
}

.globe-lines .land {
  fill: rgba(47, 86, 217, 0.08);
  stroke: rgba(255, 255, 255, 0.13);
}

.main-route,
.soft-route {
  fill: none;
  stroke-linecap: round;
}

.main-route {
  stroke: url(#route-gradient);
  stroke-width: 4;
}

.soft-route {
  stroke: rgba(201, 240, 106, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 8 12;
}

.route-origin {
  fill: var(--cobalt);
}

.route-destination {
  fill: var(--lime);
}

.route-ring {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  opacity: 0.72;
  transform-box: fill-box;
  transform-origin: center;
}

.travel-dot {
  r: 6px;
  fill: var(--white);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.85));
}

.bimonthly-banner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(47, 86, 217, 0.98), rgba(31, 55, 151, 0.98) 56%, rgba(14, 12, 59, 0.99));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bimonthly-banner::after {
  position: absolute;
  top: -160px;
  right: 8%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 240, 106, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.018), 0 0 0 116px rgba(201, 240, 106, 0.025);
  pointer-events: none;
}

.bimonthly-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(175px, 0.55fr) minmax(360px, 1.45fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: 230px;
  padding-block: 42px;
}

.bimonthly-label {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.bimonthly-status {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.bimonthly-copy h2 {
  max-width: 760px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.bimonthly-copy p {
  max-width: 650px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
}

.bimonthly-issue {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.bimonthly-issue > span {
  color: var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.bimonthly-issue strong {
  max-width: 260px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(21px, 2vw, 28px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.bimonthly-issue a {
  margin-top: 12px;
  padding-bottom: 3px;
  color: var(--white);
  border-bottom: 1px solid var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.bimonthly-issue a:hover,
.bimonthly-issue a:focus-visible {
  color: var(--lime);
}

.platform {
  background: var(--beige);
}

.section-heading {
  max-width: 1040px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading h2,
.summit-copy h2,
.contact-inner h2 {
  max-width: 1000px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: clamp(28px, 3vw, 46px);
  border-right: 2px solid var(--ink);
}

.platform-card:last-child {
  border-right: 0;
}

.platform-number {
  margin-bottom: 62px;
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.platform-card h3 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.platform-card > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.platform-card ul {
  margin: 26px 0 36px;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.platform-card li {
  position: relative;
  padding: 8px 0 8px 19px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.platform-card li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.card-investments {
  background: rgba(255, 255, 255, 0.34);
}

.card-summit {
  background: var(--lime);
}

.card-summit li::before {
  background: var(--cobalt);
}

.portfolio {
  color: var(--white);
  background: var(--ink);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.65);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.company-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--navy);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.company-card:hover,
.company-card:focus-visible {
  z-index: 2;
  border-color: var(--lime);
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.company-logo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: clamp(30px, 4vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(rgba(201, 240, 106, 0.11) 1.5px, transparent 1.7px),
    #050713;
  background-size: 18px 18px;
}

.company-logo img {
  width: auto;
  height: auto;
  max-width: min(88%, 300px);
  max-height: 110px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}

.company-logo .logo-sheco {
  width: auto;
  height: auto;
  max-width: min(76%, 250px);
  max-height: 105px;
}

.company-logo .logo-seawith {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: scale(1.28);
}

.company-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  margin-top: auto;
  padding: 18px 20px;
  background: var(--navy-soft);
}

.company-info strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 15px;
}

.company-info span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-align: right;
}

.summit {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 62%, rgba(201, 240, 106, 0.2), transparent 26%),
    linear-gradient(120deg, var(--navy) 0%, #16256e 48%, var(--cobalt) 100%);
}

.summit-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.summit-copy h2 {
  max-width: 870px;
}

.summit-copy > p:not(.summit-date) {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.42;
}

.summit-poster {
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.summit-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.updates {
  background: var(--paper);
}

.updates-list {
  border-top: 2px solid var(--ink);
}

.update-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding-inline 180ms ease;
}

.update-row:hover,
.update-row:focus-visible {
  padding-inline: 14px;
  background: var(--beige);
}

.update-row img {
  width: 210px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
}

.update-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.update-meta time {
  color: var(--muted);
}

.update-body h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.update-body p {
  max-width: 760px;
  margin-top: 9px;
  color: var(--muted);
}

.update-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.update-row:hover .update-arrow,
.update-row:focus-visible .update-arrow {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.updates-link {
  margin-top: 34px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(47, 86, 217, 0.72), transparent 34%),
    linear-gradient(116deg, var(--navy) 5%, #172069 58%, var(--cobalt) 130%);
}

.contact-glow {
  position: absolute;
  top: -35%;
  right: 5%;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.13;
  filter: blur(50px);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}

.contact-inner h2 {
  max-width: 960px;
}

.contact-inner p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
}

.contact-actions {
  flex-direction: column;
  margin-top: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 42px;
}

.footer-brand {
  display: block;
  width: clamp(138px, 13vw, 184px);
  flex: 0 0 auto;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-inner p {
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--white);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

@keyframes dash {
  to { stroke-dashoffset: -120; }
}

@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(0.7); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 78px;
  }

  .brand {
    width: 205px;
  }

  .primary-nav {
    gap: 24px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 38%;
  }

  .hero-visual {
    right: -230px;
    width: 780px;
    opacity: 0.8;
  }

  .platform-card {
    min-height: 590px;
    padding: 30px;
  }

  .company-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .company-info span {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: calc(100svh - var(--header-height));
    padding: 42px var(--pad);
    gap: 10px;
    opacity: 0;
    background: var(--white);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
    font-size: 25px;
  }

  .primary-nav .resource-nav-link {
    justify-content: flex-start;
    padding-block: 12px;
    padding-inline: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .resource-nav-link img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    display: flex;
    align-items: flex-start;
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(74px, 19vw, 126px);
  }

  .hero-visual {
    top: auto;
    right: -210px;
    bottom: -210px;
    width: 690px;
    opacity: 0.72;
    transform: none !important;
  }

  .bimonthly-inner {
    grid-template-columns: minmax(140px, 0.5fr) minmax(0, 1.5fr);
    min-height: auto;
    padding-block: 38px;
  }

  .bimonthly-issue {
    grid-column: 2;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .platform-grid,
  .portfolio-grid,
  .summit-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    border: 0;
    gap: 18px;
  }

  .platform-card {
    min-height: auto;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
  }

  .platform-card:last-child {
    border-right: 2px solid var(--ink);
  }

  .platform-number {
    margin-bottom: 40px;
  }

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

  .summit-poster {
    width: min(100%, 560px);
  }

  .contact-actions {
    align-items: stretch;
  }

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

  .footer-inner small {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 20px;
    --header-height: 72px;
  }

  .brand {
    width: 174px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-grid {
    min-height: 640px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 64px;
  }

  .hero-kicker,
  .summit-date {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(70px, 20vw, 100px);
    line-height: 0.86;
  }

  .hero-lede {
    max-width: 420px;
    margin-top: 28px;
    font-size: 20px;
  }

  .hero-actions,
  .summit-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
  }

  .hero-visual {
    right: -220px;
    bottom: -150px;
    width: 590px;
    opacity: 0.52;
  }

  .bimonthly-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 34px;
  }

  .bimonthly-copy h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .bimonthly-issue {
    grid-column: auto;
  }

  .section-heading h2,
  .summit-copy h2,
  .contact-inner h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .section-heading p {
    font-size: 19px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .company-info {
    align-items: center;
    flex-direction: row;
  }

  .company-info span {
    text-align: right;
  }

  .update-row {
    grid-template-columns: 94px minmax(0, 1fr) auto;
    gap: 14px;
    padding-block: 20px;
  }

  .update-row img {
    width: 94px;
    aspect-ratio: 1;
  }

  .update-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .update-body h3 {
    font-size: 18px;
  }

  .update-body p {
    display: none;
  }

  .update-arrow {
    width: 34px;
    height: 34px;
    border-width: 1px;
    font-size: 15px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* Contact page */
.contact-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(47, 86, 217, 0.42), transparent 34%),
    linear-gradient(128deg, #0e0c3b 0%, #15124c 58%, #243fa8 140%);
}

.contact-page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -34vw;
  width: min(720px, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 240, 106, 0.35);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 74px rgba(255, 255, 255, 0.025), 0 0 0 148px rgba(255, 255, 255, 0.018);
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(54px, 9vw, 150px);
  min-height: clamp(540px, 70vh, 760px);
  padding-block: clamp(96px, 11vw, 160px);
}

.contact-page-kicker {
  margin-bottom: 28px;
  color: var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-page-hero h1 {
  max-width: 900px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(76px, 9vw, 144px);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-page-hero h1 span {
  color: var(--lime);
}

.contact-page-intro {
  max-width: 560px;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.55;
}

.contact-page-body {
  padding-block: clamp(82px, 10vw, 150px);
  background: var(--beige);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(48px, 8vw, 130px);
}

.contact-paths {
  border-top: 2px solid var(--ink);
}

.contact-paths article {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.contact-paths article > span,
.contact-direct span,
.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-paths h2 {
  margin-bottom: 8px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(23px, 2vw, 31px);
}

.contact-paths p {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
}

.contact-direct {
  display: block;
  margin-top: 34px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 6px 6px 0 var(--ink);
}

.contact-direct span {
  color: var(--ink);
}

.contact-direct strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
}

.contact-form {
  display: grid;
  align-self: start;
  gap: 22px;
  padding: clamp(28px, 4vw, 54px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(17, 21, 32, 0.3);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 10px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cobalt);
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-form-note {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .contact-page-hero-inner,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-hero-inner {
    align-content: center;
    min-height: 620px;
  }

  .contact-page-intro {
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .contact-page-hero-inner {
    min-height: 560px;
    padding-block: 82px;
  }

  .contact-page-hero h1 {
    font-size: clamp(64px, 20vw, 88px);
  }

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

  .contact-form {
    padding: 26px 22px;
    box-shadow: 5px 5px 0 var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Venture Studio */

.studio-page {
  background: var(--paper);
}

.studio-intro {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(47, 86, 217, 0.72), transparent 34%),
    linear-gradient(118deg, var(--navy) 0%, #181655 58%, #2748be 120%);
}

.studio-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  align-items: end;
  min-height: 540px;
  padding-block: clamp(76px, 9vw, 130px);
  gap: clamp(54px, 8vw, 130px);
}

.studio-title-wrap h1 {
  max-width: 970px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(66px, 8vw, 124px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.studio-intro-copy {
  padding-bottom: 8px;
}

.studio-intro-copy > p {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.42;
}

.studio-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.studio-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px 5px;
  border-bottom: 2px solid var(--lime);
  color: var(--white);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.studio-jump span {
  color: var(--lime);
  transition: transform 180ms ease;
}

.studio-jump:hover span,
.studio-jump:focus-visible span {
  transform: translateY(4px);
}

.studio-section {
  padding-block: clamp(78px, 9vw, 132px);
}

.studio-section-title {
  max-width: 1020px;
  margin-bottom: clamp(40px, 5.5vw, 72px);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(48px, 6.5vw, 94px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.studio-thesis {
  background: var(--beige);
}

.thesis-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.thesis-layout blockquote {
  margin: 0;
  padding: clamp(32px, 4vw, 58px) clamp(30px, 4vw, 56px) clamp(38px, 5vw, 70px) 0;
  border-right: 2px solid var(--ink);
}

.thesis-layout blockquote strong {
  color: var(--cobalt);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.thesis-layout blockquote p {
  max-width: 440px;
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.7;
}

.thesis-principles article {
  display: grid;
  grid-template-columns: 54px minmax(190px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 148px;
  padding: 28px 0 28px clamp(28px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.thesis-principles article:last-child {
  border-bottom: 0;
}

.thesis-principles article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--cobalt);
  background: var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.thesis-principles h3,
.support-directory h3,
.studio-company-copy h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.thesis-principles h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.thesis-principles p {
  color: var(--muted);
  line-height: 1.65;
}

.studio-support {
  color: var(--white);
  background: var(--ink);
}

.studio-section-title-light {
  color: var(--white);
}

.support-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.support-directory article {
  display: grid;
  grid-template-columns: 58px minmax(190px, 0.48fr) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  min-height: 190px;
  padding: 34px clamp(26px, 3vw, 44px) 34px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.support-directory article:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(26px, 3vw, 44px);
  border-right: 0;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--lime);
  font-size: 19px;
}

.support-directory h3 {
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.1;
}

.support-directory p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.studio-portfolio {
  background: var(--paper);
}

.studio-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.studio-company:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.studio-company {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 0.58fr);
  min-height: 288px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.studio-company:hover,
.studio-company:focus-visible {
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0 var(--lime);
}

.studio-company-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(rgba(201, 240, 106, 0.12) 1.5px, transparent 1.7px),
    #050713;
  background-size: 18px 18px;
}

.studio-company-logo img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 94px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.studio-company-logo .studio-logo-seawith {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: scale(1.24);
}

.studio-company-logo .studio-logo-sheco {
  max-width: 78%;
  max-height: 92px;
}

.studio-company-logo .studio-logo-fork-and-good,
.studio-company-logo .studio-logo-mimic-systems {
  max-width: 92%;
  max-height: 86px;
}

.studio-company-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
}

.studio-company-copy > span {
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-company-copy h3 {
  margin-top: 12px;
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1;
}

.studio-company-copy p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.studio-company-copy b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
}

.studio-company-copy i {
  font-style: normal;
  transition: transform 180ms ease;
}

.studio-company:hover .studio-company-copy i,
.studio-company:focus-visible .studio-company-copy i {
  transform: translate(3px, -3px);
}

.studio-bridge {
  color: var(--ink);
  background: var(--lime);
}

.studio-bridge-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
}

.studio-bridge-inner > img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: contain;
}

.company-logo .logo-fork-and-good,
.company-logo .logo-mimic-systems {
  max-width: 90%;
  max-height: 92px;
}

.studio-bridge-inner h2,
.studio-cta-inner h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.studio-bridge-inner p {
  max-width: 790px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
}

.studio-bridge .button-cobalt:hover,
.studio-bridge .button-cobalt:focus-visible {
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--white);
}

.studio-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 30%, rgba(47, 86, 217, 0.7), transparent 36%),
    linear-gradient(116deg, var(--navy) 4%, #172069 62%, var(--cobalt) 132%);
}

.studio-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

.studio-cta-inner p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
}

.studio-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

@media (max-width: 1100px) {
  .studio-intro-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  }

  .support-directory article {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .support-directory article p {
    grid-column: 2;
  }

  .studio-company {
    grid-template-columns: 42% 58%;
  }
}

@media (max-width: 820px) {
  .studio-intro-inner,
  .thesis-layout,
  .studio-cta-inner {
    grid-template-columns: 1fr;
  }

  .studio-intro-inner {
    align-items: start;
    min-height: auto;
    gap: 34px;
  }

  .studio-intro-copy {
    max-width: 650px;
  }

  .thesis-layout blockquote {
    padding-right: 0;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .thesis-principles article {
    padding-left: 0;
  }

  .support-directory,
  .studio-company-grid {
    grid-template-columns: 1fr;
  }

  .support-directory article,
  .support-directory article:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .studio-bridge-inner {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .studio-bridge-inner > img {
    width: 110px;
  }

  .studio-bridge-inner > .button {
    grid-column: 2;
    justify-self: start;
  }

  .studio-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .studio-title-wrap h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .studio-intro-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .studio-intro-actions .button,
  .studio-jump {
    width: 100%;
  }

  .studio-jump {
    justify-content: center;
  }

  .studio-section-title {
    font-size: clamp(45px, 14vw, 68px);
  }

  .thesis-principles article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .thesis-principles article > span {
    width: 42px;
    height: 42px;
  }

  .thesis-principles article p {
    grid-column: 2;
  }

  .support-directory article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

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

  .studio-company {
    grid-template-columns: 1fr;
  }

  .studio-company-logo {
    min-height: 190px;
  }

  .studio-company-copy {
    min-height: 250px;
  }

  .studio-bridge-inner {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
  }

  .studio-bridge-inner > img {
    width: 78px;
  }

  .studio-bridge-inner h2 {
    font-size: 42px;
  }

  .studio-bridge-inner > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .studio-cta-actions,
  .studio-cta-actions .button {
    width: 100%;
  }
}

/* Portfolio company pages */

.company-page {
  background: var(--paper);
}

.company-section {
  padding-block: clamp(78px, 9vw, 132px);
}

.company-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 86, 217, 0.72), transparent 34%),
    linear-gradient(118deg, var(--navy) 0%, #171454 52%, #2649bd 126%);
}

.company-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: stretch;
  min-height: 650px;
  gap: clamp(36px, 6vw, 94px);
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: clamp(76px, 9vw, 124px);
}

.company-hero-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: min(270px, 70%);
  min-height: 76px;
  margin-bottom: 34px;
  overflow: hidden;
}

.company-hero-logo img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.company-hero-logo .logo-seawith {
  width: 76px;
  max-width: none;
  max-height: none;
  transform: scale(3.35);
}

.company-hero-logo .logo-sheco {
  max-height: 92px;
}

.company-hero-logo .logo-fork-and-good,
.company-hero-logo .logo-mimic-systems {
  max-width: 100%;
  max-height: 70px;
}

.company-sector {
  margin-bottom: 18px;
  color: var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-hero h1 {
  max-width: 680px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.company-lede {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.42;
}

.company-hero .button {
  margin-top: 32px;
}

.company-hero-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.company-hero-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(14, 12, 59, 0.55), transparent 24%);
}

.company-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}

.company-about {
  background: var(--beige);
}

.company-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(50px, 8vw, 130px);
}

.company-about h2,
.company-section-heading h2,
.portfolio-navigator-heading h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.company-original {
  max-width: 430px;
  margin-top: 28px;
  color: var(--cobalt);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-style: italic;
  line-height: 1.2;
}

.company-about-copy {
  padding-top: 4px;
}

.company-about-copy > p {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
}

.company-about-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.company-about-copy li {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.company-media {
  background: var(--paper);
}

.company-section-heading {
  margin-bottom: clamp(34px, 5vw, 60px);
}

.company-media-carousel {
  width: 100%;
}

.company-media-stage {
  position: relative;
  aspect-ratio: 16 / 8;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.company-media-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 380ms ease, transform 550ms ease, visibility 380ms;
}

.company-media-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.company-media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-media-slide iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050713;
}

.company-media-controls {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 7, 19, 0.82);
  backdrop-filter: blur(8px);
}

.company-media-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.company-media-controls button:hover,
.company-media-controls button:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.company-media-controls span {
  min-width: 58px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.company-media-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.company-media-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(17, 21, 32, 0.24);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.company-media-dot.is-active {
  width: 58px;
  background: var(--cobalt);
}

.company-updates {
  background: var(--beige);
}

.company-updates-list {
  border-top: 2px solid var(--ink);
}

.company-update-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 48px;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  transition: padding-inline 180ms ease, background 180ms ease;
}

.company-update-row:hover,
.company-update-row:focus-visible {
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.company-update-row > img {
  width: 210px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
}

.company-update-row time {
  color: var(--cobalt);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-update-row h3 {
  max-width: 940px;
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
}

.company-update-row p {
  max-width: 800px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.company-update-row > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 19px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.company-update-row:hover > span,
.company-update-row:focus-visible > span {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.portfolio-navigator {
  color: var(--white);
  background: var(--ink);
}

.portfolio-navigator-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.portfolio-navigator-heading h2 {
  max-width: 940px;
}

.portfolio-navigator-heading > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--lime);
  color: var(--lime);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.portfolio-nav-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.portfolio-nav-company {
  position: relative;
  display: grid;
  grid-template-rows: clamp(96px, 9vw, 120px) 62px;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 180ms ease, background 180ms ease;
}

.portfolio-nav-company:last-child {
  border-right: 0;
}

.portfolio-nav-company:hover,
.portfolio-nav-company:focus-visible,
.portfolio-nav-company.is-current {
  color: var(--ink);
  background: var(--lime);
}

.portfolio-nav-logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 24px 18px;
  background: #050713;
}

.portfolio-nav-logo img {
  width: auto;
  max-width: 88%;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.portfolio-nav-logo .logo-seawith {
  width: 122%;
  max-width: 122%;
}

.portfolio-nav-logo .logo-sheco {
  max-width: 72%;
}

.portfolio-nav-logo .logo-fork-and-good,
.portfolio-nav-logo .logo-mimic-systems {
  max-width: 94%;
  max-height: 52px;
}

.company-mimic-systems .company-media-slide img {
  padding: clamp(28px, 6vw, 84px);
  object-fit: contain;
  background: #050713;
}

.portfolio-nav-company strong {
  display: grid;
  place-items: center;
  width: 100%;
  height: 62px;
  min-height: 0;
  padding: 12px 16px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1100px) {
  .company-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .portfolio-nav-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portfolio-nav-company {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .portfolio-nav-company:nth-child(4) {
    border-right: 0;
  }

  .portfolio-nav-company:nth-child(n + 5) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .company-hero-inner,
  .company-about-grid {
    grid-template-columns: 1fr;
  }

  .company-hero-inner {
    min-height: auto;
    padding-inline: 0;
    gap: 0;
  }

  .company-hero-copy {
    padding-inline: var(--pad);
    padding-bottom: 64px;
  }

  .company-hero-image {
    min-height: 420px;
  }

  .company-hero-image::before {
    background: linear-gradient(180deg, rgba(14, 12, 59, 0.35), transparent 25%);
  }

  .company-hero-image img {
    min-height: 420px;
  }

  .company-about-grid {
    gap: 38px;
  }

  .company-media-stage {
    min-height: 380px;
    aspect-ratio: 4 / 3;
  }

  .company-update-row {
    grid-template-columns: 160px minmax(0, 1fr) 42px;
    gap: 20px;
  }

  .company-update-row > img {
    width: 160px;
  }
}

@media (max-width: 560px) {
  .company-hero-copy {
    padding-top: 62px;
  }

  .company-hero-logo {
    width: min(230px, 72%);
    margin-bottom: 28px;
  }

  .company-hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .company-hero-image,
  .company-hero-image img {
    min-height: 310px;
  }

  .company-about h2,
  .company-section-heading h2,
  .portfolio-navigator-heading h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .company-about-copy > p {
    font-size: 18px;
  }

  .company-about-copy li {
    width: 100%;
    text-align: center;
  }

  .company-media-stage {
    min-height: 330px;
    aspect-ratio: 1;
  }

  .company-media-controls {
    right: 12px;
    bottom: 12px;
  }

  .company-update-row {
    grid-template-columns: 92px minmax(0, 1fr) 34px;
    gap: 13px;
    padding-block: 20px;
  }

  .company-update-row > img {
    width: 92px;
    aspect-ratio: 1;
  }

  .company-update-row h3 {
    font-size: 18px;
  }

  .company-update-row p {
    display: none;
  }

  .company-update-row > span {
    width: 34px;
    height: 34px;
    border-width: 1px;
    font-size: 15px;
  }

  .portfolio-navigator-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-nav-track {
    display: flex;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portfolio-nav-track::-webkit-scrollbar {
    display: none;
  }

  .portfolio-nav-company,
  .portfolio-nav-company:nth-child(3),
  .portfolio-nav-company:nth-child(-n + 3) {
    flex: 0 0 190px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    scroll-snap-align: start;
  }
}
