:root {
  --accent: #003c47;
  --footer: #00242a;
  --text: #212529;
  --muted: #495057;
  --body: #343a40;
  --surface: #f9f9f9;
  --hero-bg: #f2f4f5;
  --work-bg: rgba(0, 60, 71, 0.05);
  --about-bg: rgba(0, 60, 71, 0.1);
  --border: rgba(205, 204, 216, 0.4);
  --tag-bg: rgba(0, 60, 71, 0.05);
  --green: #e1ffc1;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

img,
svg {
  display: block;
}

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

.site-header {
  align-items: center;
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 16px 64px;
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand-logo {
  filter: brightness(0) saturate(100%) invert(11%) sepia(19%) saturate(2368%) hue-rotate(145deg) brightness(91%) contrast(102%);
  height: 32px;
  width: auto;
}

.linkedin {
  align-items: center;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.linkedin svg {
  fill: var(--footer);
  height: 32px;
  width: 32px;
}

.hero {
  background: var(--hero-bg);
  padding: 64px;
}

.hero-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1288px;
}

.portrait-shell {
  background: #00444e;
  border-radius: 300px 300px 0 0;
  height: 404px;
  overflow: hidden;
  position: relative;
  width: 314px;
}

.portrait {
  height: 430px;
  left: 50%;
  object-fit: cover;
  object-position: 52% 18%;
  position: absolute;
  top: 62px;
  transform: translateX(-50%) rotate(-12deg) scale(1.22);
  width: 300px;
}

.hero-copy {
  flex: 1 1 520px;
  max-width: 822px;
}

.pill,
.coming-pill {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: -0.1504px;
  line-height: 32px;
  margin: 0 0 16px;
  padding: 4px 16px;
}

h1,
.about-copy h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 54px;
  line-height: 64px;
}

.intro {
  color: var(--muted);
  font-size: 20px;
  letter-spacing: -0.4395px;
  line-height: 32px;
  margin: 16px 0 40px;
  max-width: 780px;
}

.skill-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.skill-list {
  gap: 16px;
}

.skill-list li {
  background: var(--tag-bg);
  border: 0.556px solid #d1d5dc;
  border-radius: 4px;
  color: #0a0a0a;
  font-size: 14px;
  letter-spacing: -0.1504px;
  line-height: 20px;
  padding: 8px 16px;
}

.work-section {
  background: var(--work-bg);
  padding: 32px 64px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1424px;
}

.section-kicker {
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5496px;
  line-height: 20px;
  margin: 0 0 32px;
  text-transform: uppercase;
}

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

.project-card {
  background: var(--surface);
  border: 0.556px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.project-card-link {
  color: inherit;
  display: block;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.project-card-link:hover,
.project-card-link:focus-visible {
  border-color: rgba(0, 60, 71, 0.28);
  box-shadow: 0 18px 44px rgba(0, 20, 36, 0.12);
  transform: translateY(-4px);
}

.project-card-link:focus-visible {
  outline: 3px solid rgba(0, 60, 71, 0.28);
  outline-offset: 4px;
}

.project-card-link .project-media img {
  transition: transform 220ms ease;
}

.project-card-link:hover .project-media img,
.project-card-link:focus-visible .project-media img {
  transform: scale(1.025);
}

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

.project-card-link:hover .project-link span,
.project-card-link:focus-visible .project-link span {
  transform: translateX(4px);
}

.project-media {
  aspect-ratio: 695 / 347;
  overflow: hidden;
  position: relative;
}

.project-thumbnail {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gradient-purple {
  background:
    radial-gradient(
      ellipse at 54% 56%,
      rgba(41, 25, 62, 1) 10%,
      rgba(22, 18, 53, 1) 58%,
      rgba(3, 11, 44, 1) 100%
    );
}

.gradient-teal {
  background:
    radial-gradient(
      ellipse at 40% 62%,
      rgba(12, 100, 119, 1) 8%,
      rgba(8, 56, 81, 1) 40%,
      rgba(5, 33, 63, 1) 56%,
      rgba(3, 11, 44, 1) 100%
    );
}

.stickerswap-media {
  background:
    radial-gradient(circle at 72% 26%, rgba(225, 255, 193, 0.5) 0 9%, transparent 10%),
    radial-gradient(circle at 20% 72%, rgba(168, 195, 255, 0.45) 0 12%, transparent 13%),
    linear-gradient(135deg, #00183f 0%, #003c47 55%, #0a102c 100%);
}

.project-card-link .sticker-collage {
  transition: transform 220ms ease;
}

.project-card-link:hover .sticker-collage,
.project-card-link:focus-visible .sticker-collage {
  transform: scale(1.02);
}

.sticker-collage {
  height: 100%;
  position: relative;
}

.sticker {
  align-items: center;
  background: #f8f8f8;
  border: 2px solid rgba(0, 60, 71, 0.45);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 15, 44, 0.26);
  color: var(--accent);
  display: flex;
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  position: absolute;
}

.sticker-one {
  height: 112px;
  left: 12%;
  top: 34%;
  transform: rotate(-8deg);
  width: 180px;
}

.sticker-two {
  background: var(--green);
  border-radius: 50%;
  height: 118px;
  left: 42%;
  top: 17%;
  transform: rotate(9deg);
  width: 118px;
}

.sticker-three {
  height: 104px;
  right: 13%;
  top: 38%;
  transform: rotate(7deg);
  width: 166px;
}

.sticker-four {
  background: #a8c3ff;
  height: 84px;
  left: 35%;
  top: 61%;
  transform: rotate(-4deg);
  width: 172px;
}

.shottracker-go {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pulse-large {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.coming-pill {
  font-size: 20px;
  left: 31px;
  line-height: 32px;
  margin: 0;
  padding: 8px 24px;
  position: absolute;
  top: 51px;
  z-index: 2;
}

.soon-image {
  left: 12%;
  position: absolute;
  top: 51px;
  width: 75%;
}

.project-copy {
  padding: 24px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 8px;
}

.meta span {
  border-right: 1px solid rgba(0, 60, 71, 0.8);
  color: rgba(0, 60, 71, 0.8);
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  padding: 4px 10px 4px 0;
  text-transform: uppercase;
}

.meta span + span {
  padding-left: 10px;
}

.meta span:last-child {
  border-right: 0;
}

.project-copy h2 {
  color: var(--text);
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}

.project-copy > p:not(.meta) {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 0;
  min-height: 48px;
}

.card-footer {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.tag-list {
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
}

.tag-list li {
  background: var(--tag-bg);
  border: 0.556px solid #d1d5dc;
  border-radius: 4px;
  color: var(--body);
  font-size: 12px;
  letter-spacing: -0.1504px;
  line-height: 20px;
  padding: 4px 8px;
  white-space: nowrap;
}

.project-link {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-family: Fraunces, Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  line-height: 32px;
  padding: 7px;
}

.project-link.is-hidden {
  display: none;
}

.project-link span {
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.project-detail main {
  background: var(--surface);
}

.project-nav {
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  padding: 12px 64px;
}

.project-nav a {
  color: var(--accent);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
}

.case-hero {
  background: #001535;
  overflow: hidden;
}

.case-hero img {
  aspect-ratio: 1830 / 554;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.case-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  max-width: 950px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.case-intro {
  padding-top: 40px;
}

.case-bottom {
  gap: 16px;
  padding-bottom: 40px;
}

.case-intro > h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 64px;
  margin: 8px 0 0;
}

.case-lede {
  color: var(--muted);
  font-size: 20px;
  letter-spacing: -0.4395px;
  line-height: 32px;
  margin: 0 0 16px;
}

.quick-stats {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
}

.quick-stats div {
  flex: 1 1 25%;
  border-right: 1px solid var(--border);
  padding: 16px;
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats dt,
.case-kicker,
.step {
  color: rgba(0, 60, 71, 0.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}

.quick-stats dd {
  color: var(--body);
  font-size: 16px;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 0;
}

.quick-stats a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stickerswap-detail .quick-stats div {
  flex-basis: 50%;
}

.stickerswap-detail .quick-stats div:nth-child(2),
.stickerswap-detail .quick-stats div:nth-child(4) {
  border-right: 0;
}

.stickerswap-detail .quick-stats div:nth-child(n + 3) {
  border-top: 1px solid var(--border);
}

.case-section {
  padding: 16px 0;
}

.case-section > .case-kicker {
  margin-bottom: 16px;
}

.case-section > p:not(.case-kicker):not(.step) {
  color: var(--body);
  font-size: 16px;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 0 0 24px;
}

.case-section > p:last-child {
  margin-bottom: 0;
}

.info-grid,
.outcomes-grid,
.feature-grid {
  display: grid;
  gap: 10px;
}

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

.three-up,
.outcomes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid > p,
.info-grid article,
.outcomes-grid article {
  background: var(--tag-bg);
  border-radius: 8px;
  color: var(--body);
  margin: 0;
  padding: 16px;
}

.info-grid > p {
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  min-height: 68px;
}

.info-grid > p::before {
  content: "• ";
}

.info-grid article h2 {
  color: var(--body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 4px 0;
}

.info-grid article p:not(.step) {
  color: var(--body);
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
}

.feature-band {
  background: #000f2c;
  color: var(--surface);
  margin: 0 0 40px;
  padding: 32px;
}

.feature-grid {
  justify-content: center;
  margin: 0 auto;
  max-width: 1232px;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-up-media {
  grid-template-columns: repeat(2, minmax(0, 547px));
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.feature-media {
  align-items: center;
  background: rgba(201, 199, 255, 0.15);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
}

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

.case-screen-media {
  background:
    radial-gradient(circle at 72% 18%, rgba(154, 130, 255, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(248, 248, 248, 0.08), rgba(248, 248, 248, 0.03));
  box-shadow:
    inset 0 0 0 1px rgba(248, 248, 248, 0.14),
    0 18px 48px rgba(0, 15, 44, 0.18);
  padding: 16px;
}

.case-screen-media img {
  border-radius: 12px;
  object-fit: contain;
}

.phone-media {
  aspect-ratio: 287 / 504;
}

.phone-media img,
.phone-media video {
  object-fit: contain;
  object-position: center;
}

.tablet-media {
  aspect-ratio: 611 / 460;
}

.phone-band {
  --team-primary: #0b2a66;
  --team-secondary: #a8c3ff;
  --team-highlight: #ff6b2b;
  --team-glow: rgba(64, 113, 255, 0.28);
  --team-bg-start: #06133f;
  --team-bg-mid: #0b2a66;
  --team-bg-end: #000f2c;
  --team-media-start: rgba(64, 113, 255, 0.18);
  --team-media-end: rgba(0, 15, 44, 0.86);
  background:
    radial-gradient(circle at 18% 18%, var(--team-glow), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(225, 255, 193, 0.14), transparent 22%),
    linear-gradient(145deg, var(--team-bg-start) 0%, var(--team-bg-mid) 46%, var(--team-bg-end) 100%);
  transition: background 220ms ease;
}

.phone-band .feature-media {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(160deg, var(--team-media-start), var(--team-media-end));
  box-shadow:
    inset 0 0 0 1px rgba(248, 248, 248, 0.12),
    0 18px 44px color-mix(in srgb, var(--team-primary) 22%, transparent);
}

.team-branding-demo {
  transition:
    background 220ms ease,
    color 220ms ease;
}

.team-branding-demo:has(#team-wildcats:checked) {
  --team-primary: #512888;
  --team-secondary: #7750b2;
  --team-highlight: #dabeff;
  --team-glow: rgba(145, 95, 212, 0.3);
  --team-bg-start: #16082a;
  --team-bg-mid: #301357;
  --team-bg-end: #0b031a;
  --team-media-start: rgba(119, 80, 178, 0.26);
  --team-media-end: rgba(22, 8, 42, 0.9);
}

.team-branding-demo:has(#team-houston:checked) {
  --team-primary: #c8102e;
  --team-secondary: #d0557a;
  --team-highlight: #aaf5e4;
  --team-glow: rgba(200, 16, 46, 0.28);
  --team-bg-start: #3f030d;
  --team-bg-mid: #8f071c;
  --team-bg-end: #170104;
  --team-media-start: rgba(200, 16, 46, 0.28);
  --team-media-end: rgba(63, 3, 13, 0.9);
}

.team-branding-radio {
  left: -9999px;
  position: absolute;
}

.team-branding-header {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 26px;
  max-width: 1232px;
}

.feature-kicker {
  color: var(--team-highlight);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 16px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.team-branding-header h2 {
  color: var(--surface);
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  line-height: 38px;
  margin: 0;
}

.team-branding-controls {
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.14);
  border-radius: 999px;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.team-branding-controls label {
  align-items: center;
  border-radius: 999px;
  color: rgba(248, 248, 248, 0.72);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  line-height: 18px;
  padding: 8px 12px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.team-branding-controls label:hover {
  color: var(--surface);
}

.team-branding-controls span {
  background: var(--swatch, var(--team-primary));
  border: 1px solid rgba(248, 248, 248, 0.36);
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.team-branding-controls label:nth-child(1) {
  --swatch: #0b2a66;
}

.team-branding-controls label:nth-child(2) {
  --swatch: #512888;
}

.team-branding-controls label:nth-child(3) {
  --swatch: #c8102e;
}

.team-branding-demo:has(#team-shottracker:checked) .team-branding-controls label:nth-child(1),
.team-branding-demo:has(#team-wildcats:checked) .team-branding-controls label:nth-child(2),
.team-branding-demo:has(#team-houston:checked) .team-branding-controls label:nth-child(3) {
  background: var(--surface);
  color: var(--team-primary);
}

.team-branding-demo .phone-media {
  position: relative;
}

.team-branding-demo .feature-media img.team-branded-image {
  display: none;
}

.team-branding-demo:has(#team-shottracker:checked) .brand-shottracker,
.team-branding-demo:has(#team-wildcats:checked) .brand-wildcats,
.team-branding-demo:has(#team-houston:checked) .brand-houston {
  display: block;
}

.promo-video-section {
  border-top: 1px solid rgba(33, 36, 36, 0.12);
  padding-top: 34px;
}

.promo-video-grid {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.promo-video-grid h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  margin: 0 0 16px;
}

.promo-video-frame {
  margin: 0;
}

.promo-video-player {
  aspect-ratio: 1280 / 719;
  background: #05070d;
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(7, 17, 38, 0.18);
  display: block;
  width: 100%;
}

.promo-video-frame figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

.pulse-band {
  background:
    radial-gradient(circle at 76% 20%, rgba(142, 113, 255, 0.28), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(47, 190, 214, 0.16), transparent 28%),
    linear-gradient(145deg, #07072f 0%, #171236 48%, #000f2c 100%);
}

.pulse-band .tablet-media {
  background:
    radial-gradient(circle at 72% 18%, rgba(154, 130, 255, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(32, 26, 76, 0.96), rgba(0, 15, 44, 0.92));
  box-shadow: inset 0 0 0 1px rgba(248, 248, 248, 0.12);
}

.feature-card h2 {
  color: var(--surface);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}

.feature-card p {
  color: var(--surface);
  font-size: 16px;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 0;
}

.outcomes-grid article h2 {
  color: var(--body);
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 0 0 4px;
}

.outcomes-grid article p {
  color: var(--body);
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
}

.challenge-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.challenge-grid article {
  background: var(--tag-bg);
  border-radius: 8px;
  padding: 16px;
}

.challenge-grid h2,
.decision-copy h2 {
  color: var(--body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 4px 0;
}

.challenge-grid p:not(.step),
.decision-copy p:not(.step),
.artifact-slot p {
  color: var(--body);
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
}

.decision-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.decision-card {
  background: var(--tag-bg);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
}

.decision-copy {
  align-self: center;
  padding: 24px;
}

.artifact-slot {
  align-items: center;
  background: #000f2c;
  color: var(--surface);
  display: flex;
  gap: 16px;
  justify-content: center;
  min-height: 240px;
  padding: 24px;
}

.artifact-image {
  align-items: center;
  background: #000f2c;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 240px;
  overflow: hidden;
}

.artifact-image img {
  display: block;
  height: auto;
  width: 100%;
}

.tabbed-artifact {
  align-content: start;
  background: #000f2c;
  display: grid;
  gap: 16px;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 24px;
  position: relative;
}

.tabbed-artifact input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.artifact-tabs {
  align-self: start;
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.14);
  border-radius: 8px;
  display: inline-grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: stretch;
  padding: 4px;
  width: 100%;
}

.artifact-tabs label {
  border-radius: 6px;
  color: rgba(248, 248, 248, 0.74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 16px;
  padding: 8px 12px;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.tabbed-panel {
  align-items: center;
  display: none;
  justify-content: center;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.tabbed-panel img {
  border-radius: 8px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}

#ihr-propio-one-tab:checked ~ .artifact-tabs label[for="ihr-propio-one-tab"],
#ihr-interpreter-tab:checked ~ .artifact-tabs label[for="ihr-interpreter-tab"],
#ihr-test-a-tab:checked ~ .artifact-tabs label[for="ihr-test-a-tab"],
#ihr-test-b-tab:checked ~ .artifact-tabs label[for="ihr-test-b-tab"],
#helix-before-tab:checked ~ .artifact-tabs label[for="helix-before-tab"],
#helix-proposed-tab:checked ~ .artifact-tabs label[for="helix-proposed-tab"] {
  background: var(--green);
  color: var(--accent);
}

#ihr-propio-one-tab:checked ~ .propio-one-panel,
#ihr-interpreter-tab:checked ~ .interpreter-panel,
#ihr-test-a-tab:checked ~ .test-a-panel,
#ihr-test-b-tab:checked ~ .test-b-panel,
#helix-before-tab:checked ~ .helix-before-panel,
#helix-proposed-tab:checked ~ .helix-proposed-panel {
  display: flex;
}

.is-lightbox-trigger {
  cursor: zoom-in;
  position: relative;
}

.is-lightbox-trigger::after {
  background: rgba(0, 36, 42, 0.92);
  border: 1px solid rgba(225, 255, 193, 0.35);
  border-radius: 999px;
  bottom: 14px;
  color: var(--green);
  content: "View larger";
  font-size: 12px;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.6px;
  line-height: 18px;
  opacity: 0;
  padding: 5px 12px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  transform: translate(-50%, 4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
  z-index: 6;
}

.is-lightbox-trigger:hover::after,
.is-lightbox-trigger:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.is-lightbox-trigger img {
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.is-lightbox-trigger:hover img,
.is-lightbox-trigger:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.015);
}

.image-lightbox {
  align-items: center;
  background: rgba(0, 15, 44, 0.86);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 32px;
  position: fixed;
  z-index: 100;
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox-frame {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  max-height: min(86vh, 980px);
  max-width: min(92vw, 1440px);
}

.image-lightbox-frame img {
  background: #000f2c;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}

.image-lightbox-frame figcaption {
  color: var(--surface);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.image-lightbox-close {
  align-items: center;
  background: var(--surface);
  border: 0;
  border-radius: 999px;
  color: var(--footer);
  cursor: pointer;
  display: flex;
  font-size: 32px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 4px;
  position: fixed;
  right: 24px;
  top: 24px;
  width: 44px;
  z-index: 101;
}

.artifact-slot > div:not(.role-bridge) {
  background: rgba(201, 199, 255, 0.12);
  border: 1px solid rgba(249, 249, 249, 0.16);
  border-radius: 8px;
  flex: 1;
  padding: 16px;
}

.artifact-slot h2 {
  color: var(--surface);
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 4px 0;
}

.artifact-slot p,
.artifact-label {
  color: var(--surface);
}

.artifact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}

.titled-artifact {
  align-items: stretch;
  flex-direction: column;
  gap: 14px;
}

.titled-artifact .artifact-label {
  flex: 0 0 auto;
}

.titled-artifact img {
  flex: 1 1 auto;
  min-height: 0;
}

.artifact-slot > span {
  color: var(--green);
  font-size: 24px;
}

.product-role-map {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.player-access-map {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.role-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.role-card ul {
  color: var(--surface);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 8px;
  letter-spacing: 0.3px;
  line-height: 17px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.role-card li {
  border-top: 1px solid rgba(249, 249, 249, 0.14);
  padding-top: 8px;
}

.pulse-card {
  border-color: rgba(225, 255, 193, 0.55);
  box-shadow: inset 0 0 0 1px rgba(225, 255, 193, 0.18);
}

.role-bridge {
  align-items: center;
  color: var(--green);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.6px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  width: 92px;
}

.role-bridge::before,
.role-bridge::after {
  background: rgba(225, 255, 193, 0.6);
  content: "";
  height: 1px;
  width: 64px;
}

.artifact-comparison {
  min-height: 240px;
}

.image-comparison {
  aspect-ratio: 1263 / 948;
  background: #000f2c;
  min-height: 300px;
}

.image-comparison img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.image-fallback {
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    #000f2c;
  color: var(--surface);
  display: none;
  font-size: 14px;
  height: 100%;
  justify-content: center;
  left: 0;
  letter-spacing: 0.6px;
  line-height: 18px;
  padding: 24px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.wire-placeholder {
  align-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    #000f2c;
  display: grid;
  gap: 10px;
  height: 100%;
  padding: 56px 24px 24px;
}

.wire-placeholder span {
  border: 1px solid rgba(249, 249, 249, 0.2);
  border-radius: 8px;
  color: var(--surface);
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  padding: 14px;
}

.after-wire {
  grid-template-columns: 1fr;
}

.stats-slot {
  align-items: flex-start;
  flex-direction: column;
}

.palette-system,
.setup-flow {
  align-items: flex-start;
  flex-direction: column;
}

.palette-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.palette-row span {
  aspect-ratio: 1;
  background: var(--swatch);
  border: 1px solid rgba(249, 249, 249, 0.2);
  border-radius: 8px;
}

.palette-row.warm {
  margin-top: -8px;
}

.flow-steps {
  display: grid;
  gap: 8px;
  width: 100%;
}

.flow-steps span {
  background: rgba(249, 249, 249, 0.9);
  border-radius: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 18px;
  padding: 12px;
  position: relative;
}

.flow-steps span:not(:last-child)::after {
  color: var(--green);
  content: "↓";
  position: absolute;
  right: 14px;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.stat-pills span {
  background: rgba(249, 249, 249, 0.9);
  border-radius: 6px;
  color: var(--accent);
  flex: 1 1 72px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 18px;
  padding: 12px;
  text-align: center;
}

.improvement-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-card {
  background: var(--tag-bg);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-media {
  aspect-ratio: 4 / 3;
  background: #000f2c;
  overflow: hidden;
  position: relative;
}

.comparison-state {
  inset: 0;
  position: absolute;
  transition: none;
}

.comparison-state img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.comparison-state p {
  background: rgba(0, 36, 42, 0.9);
  border-radius: 100px;
  color: var(--surface);
  font-size: 12px;
  font-weight: 600;
  left: 12px;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
  padding: 4px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
}

.no-overlay-label .comparison-state > p {
  display: none;
}

.after-state {
  opacity: 0;
  z-index: 1;
}

.before-state {
  z-index: 2;
}

.image-comparison:hover .after-state,
.image-comparison:focus-within .after-state {
  opacity: 1;
  z-index: 3;
}

.image-comparison:hover .before-state,
.image-comparison:focus-within .before-state {
  opacity: 0;
}

.hover-hint {
  background: rgba(0, 36, 42, 0.9);
  border: 1px solid rgba(225, 255, 193, 0.35);
  border-radius: 100px;
  bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  left: 50%;
  letter-spacing: 0.6px;
  line-height: 18px;
  padding: 5px 12px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: none;
  white-space: nowrap;
  z-index: 5;
}

.image-comparison:hover .hover-hint,
.image-comparison:focus-within .hover-hint {
  opacity: 0;
}

.comparison-copy {
  padding: 16px;
}

.comparison-copy h2 {
  color: var(--body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 0 0 4px;
}

.comparison-copy p {
  color: var(--body);
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 18px;
  margin: 0;
}

.interest-card {
  align-items: center;
  border-top: 1px solid rgba(33, 36, 36, 0.12);
  display: flex;
  flex-direction: column;
  margin: 24px 0 0;
  padding: 40px 0 0;
  text-align: center;
}

.interest-card h2 {
  color: var(--body);
  font-family: Fraunces, Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}

.interest-card p {
  color: var(--body);
  font-size: 16px;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 8px 0 20px;
  max-width: 560px;
}

.interest-card a {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  padding: 0 0 3px;
  transition: color 180ms ease;
  white-space: nowrap;
}

.interest-card a:hover,
.interest-card a:focus-visible {
  color: var(--body);
}

.about-section {
  background: var(--about-bg);
  padding: 86px 48px;
}

.about-inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1148px;
}

.about-copy {
  flex: 1 1 620px;
  max-width: 706px;
}

.about-copy .section-kicker {
  margin-bottom: 16px;
}

.about-copy h2 {
  color: #0a0a0a;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 16px;
}

.about-copy p:not(.section-kicker) {
  color: #364153;
  font-size: 16px;
  letter-spacing: -0.1504px;
  line-height: 24px;
  margin: 0 0 24px;
}

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

.about-image {
  border-radius: 16px;
  height: 516px;
  object-fit: cover;
  width: 396px;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(225, 255, 193, 0.48), transparent 34%),
    linear-gradient(135deg, rgba(0, 60, 71, 0.08), rgba(0, 36, 42, 0.14));
  padding: 88px 64px;
}

.contact-inner {
  border: 1px solid rgba(0, 60, 71, 0.16);
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1148px;
  overflow: hidden;
  padding: 64px;
  position: relative;
}

.contact-inner::after {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 10px;
  position: absolute;
  right: 64px;
  top: 64px;
  width: 72px;
}

.contact-inner .section-kicker {
  margin: 0 0 20px;
}

.contact-inner h2 {
  color: var(--footer);
  font-family: Fraunces, Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 60px;
  margin: 0 0 20px;
  max-width: 680px;
}

.contact-inner p:not(.section-kicker) {
  color: var(--body);
  font-size: 18px;
  letter-spacing: -0.15px;
  line-height: 30px;
  margin: 0;
  max-width: 620px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-button,
.contact-link {
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 14px 22px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.contact-button {
  background: var(--footer);
  color: #fff;
}

.contact-link {
  border: 1px solid rgba(0, 36, 42, 0.22);
  color: var(--footer);
}

.contact-button:hover,
.contact-button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--accent);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: rgba(225, 255, 193, 0.72);
  border-color: var(--accent);
}

.site-footer {
  align-items: center;
  background: var(--footer);
  color: #fff;
  display: flex;
  height: 72px;
  justify-content: center;
  padding: 1px 64px;
  position: relative;
}

.site-footer p {
  margin: 0;
}

.site-footer > p:last-child {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.footer-mark {
  height: 32px;
  left: 64px;
  object-fit: contain;
  position: absolute;
  width: 32px;
}

.stickerswap-detail main {
  background: var(--surface);
}

.stickerswap-hero {
  align-items: center;
  background:
    radial-gradient(circle at 70% 18%, rgba(225, 255, 193, 0.32), transparent 22%),
    radial-gradient(circle at 16% 76%, rgba(168, 195, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #000f2c 0%, #003c47 58%, #090f1e 100%);
  color: var(--surface);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: 540px;
  overflow: hidden;
  padding: 72px 64px;
}

.stickerswap-hero-copy {
  max-width: 560px;
}

.stickerswap-hero-copy .case-kicker {
  color: var(--green);
}

.stickerswap-hero-copy h1 {
  color: var(--surface);
  font-family: Fraunces, Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 76px;
  margin: 8px 0 18px;
}

.stickerswap-hero-copy p:last-child {
  color: rgba(248, 248, 248, 0.82);
  font-size: 18px;
  letter-spacing: -0.15px;
  line-height: 28px;
  margin: 0;
}

.stickerswap-phone-group {
  height: 460px;
  position: relative;
}

.stickerswap-process-board {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stickerswap-process-board div {
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 16px;
  min-height: 176px;
  padding: 22px;
}

.stickerswap-process-board span {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 18px;
  margin-bottom: 18px;
}

.stickerswap-process-board h2 {
  color: var(--surface);
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  margin: 0 0 10px;
}

.stickerswap-process-board p {
  color: rgba(248, 248, 248, 0.75);
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 20px;
  margin: 0;
}

.swap-phone {
  background: #090f1e;
  border: 10px solid #f8f8f8;
  border-radius: 34px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  color: #f8f8f8;
  height: 430px;
  overflow: hidden;
  padding: 22px 18px;
  position: absolute;
  width: 238px;
}

.phone-front {
  right: 14%;
  top: 8px;
  transform: rotate(4deg);
  z-index: 2;
}

.phone-back {
  left: 5%;
  top: 54px;
  transform: rotate(-6deg);
  z-index: 1;
}

.phone-status {
  background: rgba(248, 248, 248, 0.18);
  border-radius: 99px;
  height: 6px;
  margin: 0 auto 24px;
  width: 76px;
}

.phone-label,
.mini-phone-screen p {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 16px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.swap-phone h2 {
  color: #f8f8f8;
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 16px;
}

.album-progress {
  background: rgba(248, 248, 248, 0.15);
  border-radius: 99px;
  height: 10px;
  margin-bottom: 20px;
}

.album-progress span {
  background: var(--green);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 68%;
}

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

.sticker-grid span {
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 12px;
  color: #f8f8f8;
  font-size: 12px;
  font-weight: 700;
  padding: 18px 8px;
  text-align: center;
}

.sticker-grid .owned {
  background: rgba(225, 255, 193, 0.18);
}

.sticker-grid .duplicate {
  background: rgba(168, 195, 255, 0.26);
}

.sticker-grid .missing {
  background: rgba(248, 248, 248, 0.08);
}

.collector-row {
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 14px;
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
  padding: 12px;
}

.collector-row.strong {
  background: rgba(225, 255, 193, 0.14);
  border-color: rgba(225, 255, 193, 0.34);
}

.collector-row span {
  font-size: 15px;
  font-weight: 700;
}

.collector-row b {
  color: var(--green);
  font-size: 13px;
}

.collector-row small {
  color: rgba(248, 248, 248, 0.72);
  font-size: 11px;
}

.phone-tabs {
  background: rgba(248, 248, 248, 0.08);
  border-radius: 16px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(4, 1fr);
  left: 18px;
  padding: 7px;
  position: absolute;
  right: 18px;
}

.phone-tabs span {
  color: rgba(248, 248, 248, 0.7);
  font-size: 8px;
  text-align: center;
}

.swap-artifact {
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}

.swap-artifact .artifact-label {
  color: var(--green);
}

.swap-decision-image {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 219, 255, 0.18), transparent 24%),
    #000f2c;
}

.swap-decision-image img {
  height: 100%;
  object-fit: contain;
}

.trade-logic {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.trade-logic div,
.data-stack,
.ship-flow {
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 12px;
  padding: 16px;
}

.trade-logic h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 12px;
}

.trade-logic span,
.data-stack span,
.ship-flow span {
  background: #f8f8f8;
  border-radius: 8px;
  color: #0b2a66;
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 8px;
  padding: 10px 12px;
}

.data-stack,
.ship-flow {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.data-stack span,
.ship-flow span {
  margin: 0;
}

.stickerswap-band {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 219, 255, 0.24), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(225, 255, 193, 0.2), transparent 26%),
    linear-gradient(135deg, #00183f 0%, #003c47 55%, #090f1e 100%);
}

.swap-feature-panel {
  align-items: flex-start;
  background:
    radial-gradient(circle at 84% 14%, rgba(225, 255, 193, 0.28), transparent 25%),
    radial-gradient(circle at 18% 82%, rgba(0, 219, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #073852 0%, #0d1d39 58%, #090f1e 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
}

.swap-feature-panel p {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 18px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.swap-feature-panel h2 {
  color: var(--surface);
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  margin: 0;
}

.swap-screen-media {
  align-items: center;
  aspect-ratio: 287 / 504;
  background:
    radial-gradient(circle at 84% 14%, rgba(225, 255, 193, 0.22), transparent 25%),
    linear-gradient(145deg, #073852 0%, #0d1d39 58%, #090f1e 100%);
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: 18px;
}

.swap-screen-media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.swap-feature-phone {
  align-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(225, 255, 193, 0.22), transparent 24%),
    #0d1d39;
  display: flex;
  min-height: 360px;
}

.mini-phone-screen {
  background: #090f1e;
  border: 8px solid #f8f8f8;
  border-radius: 28px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  color: #f8f8f8;
  min-height: 292px;
  padding: 22px 16px;
  width: min(210px, 100%);
}

.mini-phone-screen h2 {
  color: #f8f8f8;
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  line-height: 29px;
  margin: 0 0 18px;
}

.mini-row,
.mini-match,
.input-line {
  background: rgba(248, 248, 248, 0.1);
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 12px;
  color: #f8f8f8;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  line-height: 18px;
  margin-top: 10px;
  padding: 12px;
}

.mini-row b,
.mini-match b {
  color: var(--green);
}

.input-line {
  color: var(--green);
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.mini-chip-row {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.mini-chip-row span {
  background: #f8f8f8;
  border-radius: 99px;
  color: #0b2a66;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  text-align: center;
}

.instant-human-review-detail main {
  background: var(--surface);
}

.ihr-artifact {
  align-items: stretch;
  background:
    radial-gradient(circle at 82% 12%, rgba(225, 255, 193, 0.24), transparent 24%),
    #000f2c;
  flex-direction: column;
}

.ihr-artifact .artifact-label {
  color: var(--green);
}

.ihr-wide-artifact {
  align-items: stretch;
  padding: 24px;
}

.ihr-wide-artifact img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.ihr-tabbed-artifact,
.helix-tabbed-artifact {
  min-height: 300px;
}

.ihr-tabbed-artifact .tabbed-panel img,
.helix-tabbed-artifact .tabbed-panel img {
  box-shadow: none;
}

.ihr-workflow {
  display: grid;
  gap: 8px;
}

.ihr-workflow span,
.ihr-test-card p {
  background: #f8f8f8;
  border-radius: 8px;
  color: #0b2a66;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  padding: 10px 12px;
}

.ihr-route-map {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.ihr-route-map > div,
.ihr-test-card > div {
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 12px;
  padding: 16px;
}

.ihr-route-map > span {
  align-self: center;
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
}

.ihr-route-map h2,
.ihr-test-card span {
  color: var(--surface);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 10px;
}

.ihr-route-map p {
  color: rgba(248, 248, 248, 0.78);
}

.ihr-test-card {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ihr-test-card p {
  margin: 0;
}

.winning-test {
  border-color: rgba(225, 255, 193, 0.48) !important;
  box-shadow: inset 0 0 0 1px rgba(225, 255, 193, 0.18);
}

.ihr-band {
  background: #001f2f;
}

.ihr-feature-panel {
  align-items: flex-start;
  aspect-ratio: 611 / 460;
  background:
    radial-gradient(circle at 84% 16%, rgba(225, 255, 193, 0.2), transparent 25%),
    linear-gradient(145deg, #0c6477 0%, #083851 46%, #000f2c 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}

.ihr-feature-panel p {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 18px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.ihr-feature-panel h2 {
  color: var(--surface);
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  margin: 0;
  text-transform: none;
}

.ihr-screen-media {
  aspect-ratio: 1629 / 1053;
  min-height: 0;
}

.ihr-screen-media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.ihr-variant-media {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px;
}

.ihr-variant-media img {
  border-radius: 10px;
  object-fit: cover;
}

.ihr-results-table {
  background: var(--tag-bg);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.ihr-results-table [role="row"] {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
}

.ihr-results-table [role="row"]:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.ihr-results-table span {
  color: var(--body);
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 20px;
  padding: 12px 14px;
}

.ihr-results-table [role="columnheader"] {
  background: rgba(0, 60, 71, 0.1);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.ihr-results-table [role="cell"]:last-child {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header,
  .project-nav,
  .hero,
  .work-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner {
    gap: 40px;
    justify-content: flex-start;
  }

  h1 {
    font-size: 44px;
    line-height: 52px;
  }

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

  .four-up,
  .two-up-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-video-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .contact-section {
    padding: 56px 32px;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .stickerswap-hero {
    grid-template-columns: 1fr;
    padding: 56px 32px;
  }

  .stickerswap-phone-group {
    height: 420px;
  }

  .stickerswap-process-board {
    grid-template-columns: 1fr;
  }

  .phone-back {
    left: 18%;
  }

  .phone-front {
    right: 18%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 24px;
  }

  .project-nav {
    padding: 10px 24px;
  }

  .brand-logo {
    height: 26px;
    width: auto;
  }

  .linkedin {
    height: 40px;
    width: 40px;
  }

  .linkedin svg {
    height: 28px;
    width: 28px;
  }

  .hero {
    padding: 40px 24px 48px;
  }

  .portrait-shell {
    height: 342px;
    width: 266px;
  }

  .portrait {
    height: 366px;
    top: 52px;
    width: 255px;
  }

  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .intro {
    font-size: 17px;
    line-height: 28px;
  }

  .skill-list {
    gap: 10px;
  }

  .skill-list li {
    font-size: 13px;
    padding: 7px 12px;
  }

  .work-section {
    padding: 28px 24px;
  }

  .stickerswap-hero {
    gap: 24px;
    min-height: auto;
    padding: 44px 24px 52px;
  }

  .stickerswap-hero-copy h1 {
    font-size: 44px;
    line-height: 50px;
  }

  .stickerswap-hero-copy p:last-child {
    font-size: 16px;
    line-height: 26px;
  }

  .stickerswap-phone-group {
    height: 460px;
  }

  .stickerswap-process-board div {
    min-height: auto;
  }

  .swap-phone {
    height: 390px;
    width: 218px;
  }

  .phone-back {
    left: 0;
    top: 58px;
  }

  .phone-front {
    right: 0;
    top: 0;
  }

  .case-hero img {
    aspect-ratio: auto;
    display: block;
    object-fit: contain;
  }

  .tag-list {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .tag-list li {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .case-intro {
    padding-top: 32px;
  }

  .case-intro > h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .case-lede {
    font-size: 17px;
    line-height: 28px;
  }

  .quick-stats,
  .quick-stats div {
    border-right: 0;
  }

  .quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .two-up,
  .three-up,
  .outcomes-grid,
  .challenge-grid,
  .improvement-grid,
  .four-up,
  .two-up-media {
    grid-template-columns: 1fr;
  }

  .decision-card {
    grid-template-columns: 1fr;
  }

  .artifact-slot {
    min-height: 220px;
  }

  .trade-logic,
  .data-stack,
  .ship-flow {
    grid-template-columns: 1fr;
  }

  .product-role-map {
    grid-template-columns: 1fr;
  }

  .ihr-route-map,
  .ihr-test-card {
    grid-template-columns: 1fr;
  }

  .ihr-route-map > span {
    justify-self: center;
    transform: rotate(90deg);
  }

  .player-access-map {
    grid-template-columns: 1fr;
  }

  .role-bridge {
    width: 100%;
  }

  .feature-band {
    padding: 24px;
  }

  .feature-media {
    padding: 24px;
  }

  .team-branding-header {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .team-branding-controls {
    border-radius: 16px;
    flex-wrap: wrap;
    justify-self: start;
  }

  .phone-media {
    margin: 0 auto;
    max-width: 288px;
    width: 100%;
  }

  .interest-card h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .interest-card {
    padding-top: 32px;
  }

  .coming-pill {
    font-size: 15px;
    left: 24px;
    padding: 5px 16px;
    top: 28px;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-section {
    padding: 56px 24px;
  }

  .contact-section {
    padding: 48px 24px;
  }

  .contact-inner {
    padding: 28px;
  }

  .contact-inner::after {
    right: 28px;
    top: 32px;
    width: 48px;
  }

  .contact-inner h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .contact-inner p:not(.section-kicker) {
    font-size: 18px;
    line-height: 28px;
  }

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

  .contact-button,
  .contact-link {
    text-align: center;
  }

  .about-copy h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .about-image {
    height: auto;
    max-width: 396px;
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    height: auto;
    padding: 18px 24px;
  }

  .footer-mark {
    left: auto;
    position: static;
  }

  .site-footer > p:last-child {
    text-align: left;
  }
}
