
/* ==========================================================================
Design tokens
========================================================================== */
:root {
  --frame-width: 796px;
  --content-width: 604px;
  --section-padding: 96px;
  --cover-blue: #040874;
  --page-gray: #f5f6f7;
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.5);
  --mutedcs: rgba(0, 0, 0, 0.6);
  --muted-on-dark: rgba(255, 255, 255, 0.75);
  --white: #ffffff;
  --radius-small: 8px;
  --radius-card: 8px;
  --shadow-frame: 0 4px 4px rgba(0, 0, 0, 0.15), 0 1px 1.5px rgba(0, 0, 0, 0.3);
  /*--shadow-1: 0 1px 1px rgba(0, 0, 0, 0.3), 0 1px 1.5px rgba(0, 0, 0, 0.15);*/
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
}

/* ==========================================================================
Base reset and global elements
========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #e9e9e9;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-variation-settings: "wdth" 100;
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--text);
  padding: 8px 12px;
  transform: translateY(-200%);
}

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

/* ==========================================================================
External feature cards
========================================================================== */
.external-feature-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #000;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
}

.external-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.external-feature-card span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
}

.external-feature-card-icon {
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto;
  margin: 3px;
  object-fit: contain !important;
  opacity: 1 !important;
}

/* ==========================================================================
Page shell and sections
========================================================================== */
.case-study {
  width: var(--frame-width);
  max-width: 100%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /*filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.15)) drop-shadow(0 1px 1.5px rgba(0, 0, 0, 0.3));*/
}

.case-study--tweak p{
  color: var(--mutedcs);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: 0.5px;

}

.section {
  width: 100%;
  padding: var(--section-padding);
  display: flex;
  justify-content: center;
  scroll-margin-top: 32px;
}

.section--cover {
  border-radius: var(--radius-small) var(--radius-small) 0 0;
  background: linear-gradient(180deg, var(--cover-blue) 0%, #000000 100%);
  color: var(--white);
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.section--lottery-cover {
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--lottery-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(180deg, rgba(51, 157, 1, 1) 0%, rgba(0, 0, 0, 0.85) 64%, rgba(0, 0, 0, 0.75) 100%),
  url("assets/images/lrs1bg.png");
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--lottery-cover .section-inner {
  position: relative;
  z-index: 1;
}

.section--lottery-winix {
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--lottery-winix::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #81196F 0%, #000000 100%);
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--lottery-winix .section-inner {
  position: relative;
  z-index: 1;
}

.section--lottery-li{
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--lottery-li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #005C96 0%, #000000 100%);
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--lottery-li .section-inner {
  position: relative;
  z-index: 1;
}

.section--lottery-ai{
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--lottery-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #410060 0%, #000000 100%);
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--lottery-ai .section-inner {
  position: relative;
  z-index: 1;
}

.section--lottery-odw{
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--lottery-odw::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #843503 0%, #000000 100%);
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--lottery-odw .section-inner {
  position: relative;
  z-index: 1;
}

.section--lottery-mcp{
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--lottery-mcp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-gray);
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--lottery-mcp .section-inner {
  position: relative;
  z-index: 1;
}

.section--amb {
  position: relative;
  overflow: hidden;
  background: #071700;
}

.section--amb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #044F74 0%, #000000 100%);
  background-size: fit-content;
  background-position: center top;
  opacity: 1;
}

.section--amb .section-inner {
  position: relative;
  z-index: 1;
}

.section--lottery-dark {
  background: #071700;
  color: var(--white);
}

.section--lottery-dark p,
.section--lottery-dark li {
  color: var(--muted-on-dark);
}

.section--lottery-dark strong {
  color: var(--white);
}

.section--gray {
  background: var(--page-gray);
}

.section--mcp{
  border-radius: var(--radius-small) var(--radius-small) 0 0;
}

.section--portfolio{
    border-radius: 8px 8px 0 0;
    padding-bottom: 0;
    padding-top: 82px;
}

.section-inner--portfolio {
  gap: 64px;
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: #000000;
}

.section--dark p{
  color: #ffffffa0 ;
}

.section--green{
  flex-direction: column;
  gap: 16px;
  padding: 0;
  background-color: #ffffff;
}

.section--last {
  border-radius: 0 0 var(--radius-small) var(--radius-small);
  /* M3/Elevation Light/1 */
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.025), 0 1px 1px 1px rgba(0, 0, 0, 0.025);
}

.section-inner {
  width: var(--content-width);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.section-inner--cover-intro,
.section-inner--cover-screens {
  width: var(--content-width);
}

.stack-large {
  gap: 96px;
}

.text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ==========================================================================
Typography
========================================================================== */
h1,
h2,
h3,
p,
ol,
ul,
figure,
dl,
dd {
  margin: 0;
}

.darks{
  color: #000000;
}

h1,
h2 {
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}

p,
li,
dt,
dd {
  font-size: 16px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: 0.5px;
}

p,
li,
dd {
  color: var(--muted);
}

strong,
dt {
  color: var(--text);
  font-weight: 500;
}

.section--cover p,
.section--cover li {
  color: var(--muted-on-dark);
}

.section--cover strong {
  color: var(--white);
}

.project-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section--lightndark{
  color: #ffffff;
}

.section--lightndarkhalf{
  color: #ffffffa0;
}

.cover-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cover-meta span:first-child {
  color: var(--white);
}

.cover-meta span:last-child {
  color: var(--muted-on-dark);
}

.cover-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.30);
}

.cover-rule-slide {
  margin-left: 16px;
  margin-right: 16px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.cover-summary {
  width: 100%;
}

/* ==========================================================================
Figures, media, and captions
========================================================================== */
.screen-strip {
  width: 100%;
  min-height: 332px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 51px;
}

.screen-shot {
  width: 162px;
  height: 332px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption,
figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
  letter-spacing: 0.5px;
}

.caption strong,
figcaption strong {
  font-weight: 500;
  color: var(--text);
}

.section--cover .caption {
  color: var(--muted-on-dark);
}

.info-panel,
.callout,
.outcome-panel,
.logo-strip,
.figure-card,

/* ==========================================================================
Slide deck component
========================================================================== */
.deck {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: var(--muted);
}

.figure-card-attach {
  width: 100%;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-1);
  font-weight: 500;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: #E5E6E7;
}

.figure-pair{
  width: 100%;
  display: flex;
  gap: 16px;
  border: 0;
}

.callout-pair{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  color: var(--muted);
  padding: 16px;
}

.alt-figure-head{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 8px 8px 0 0;
  background-color: var(--page-gray);
}

.alt-figure-card{
  outline: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info-panel,
.callout,
.outcome-panel,
.logo-strip {
  padding: 16px;
}

.info-panel,
.outcome-panel,
.figure-card,
.deck {
  background: var(--white);
}

.callout,
.logo-strip,
.figure-card:not(.figure-card--white),
.deck:not(.deck--white),
.outcome-panel {
  background: var(--page-gray);
}

.alt-figure-head--white{
  background-color: var(--white);
}

.overview-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overview-list > div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.overview-list dt {
  width: 100px;
  flex: 0 0 100px;
}

.overview-list dd {
  flex: 1 1 auto;
}

ol,
ul {
  padding-left: 24px;
}

li + li {
  margin-top: 0;
}

.figure-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.figure-image {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.image-button::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;

  width: 28px;
  height: 28px;
  border-radius: 999px;

  background-color: rgba(0, 0, 0, 0.72);
  background-image: url("assets/icons/fullscreen-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;

  opacity: 0;
  transition: opacity 150ms ease;
}

.image-button:hover::after,
.image-button:focus-visible::after {
  opacity: 1;
}

.deck-slide.image-button::after {
  display: none;
}

.figure-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.figure-image--wide img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.logo-strip {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.logo-strip img:nth-child(1) {
  width: 73px;
  height: 36px;
  object-fit: contain;
}

.logo-strip img:nth-child(2),
.logo-strip img:nth-child(3) {
  width: 141px;
  height: 36px;
  object-fit: contain;
}

.logo-strip img:nth-child(4) {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.persona-grid {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.persona-grid img {
  width: 100%;
  object-fit: cover;
}

.deck {
  overflow: hidden;
  padding: 0;
}

.deck-viewport {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: visible;
  background: var(--page-gray);
}

.deck-slide {
  display: none;
  width: 100%;
  height: auto;
  border: 0;
  padding: 0;
  background: transparent;
}

.deck-slide.active {
  display: block;
}

.deck-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.deck-note {
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  font-weight: 200;
  letter-spacing: 0.5px;
}

.deck-note--white {
  background: var(--white);
}

.deck-note p{
  font-weight: 200;
  color: var(--mutedcs);
}

.deck-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px;
  background: inherit;
  color: var(--muted);
  width: 100%;
}

.deck-controls button,
.link-list a {
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  padding: 6px 6px;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}

.deck-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.deck-controls button img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.deck-controls [data-deck-fullscreen] {
  margin-left: auto;
}

.deck-controls button:hover {
  background: rgb(227, 227, 227);
}

.deck-controls [data-deck-close] {
  display: none;
}

span[data-deck-counter] {
  color: var(--muted);
  font-size: 14px;
  font-weight: 200;
}

.deck.is-fullscreen {
  position: fixed;
  inset: 24px;
  z-index: 180;
  width: auto;
  height: auto;
  padding: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.deck.is-fullscreen .deck-viewport {
  flex: 1 1 auto;
  height: auto;
  background: #ffffff;
}

.deck.is-fullscreen .deck-slide img {
  object-fit: contain;
}

.deck.is-fullscreen .deck-controls {
  flex-wrap: nowrap;
  background: #f5f6f7;
}

.deck.is-fullscreen .deck-note {
  margin-left: 0;
  background: #f5f6f7;
}

.deck.is-fullscreen [data-deck-close] {
  display: inline-flex;
}

.link-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.link-list a:hover,
.deck-controls button:hover {
  border-color: #000;
}

.outcome-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-panel p:first-child {
  color: var(--text);
}

/* ==========================================================================
Fixed page controls
========================================================================== */
.page-close,
.back-to-top {
  position: fixed;
  z-index: 160;
  width: 44px;
  height: 44px;
  /*border: 1px solid rgba(0, 0, 0, 0.25);*/
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  display: grid;
  place-items: center;
  /* M3/Elevation Light/1 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.page-close {
  top: 44px;
  right: 44px;
  font-size: 28px;
  /*line-height: 1;*/
  border: 0;
  outline: 0;
}

.portfolio-page .page-close{
  opacity: 0;
}

.header{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: top;
  gap: 16px;
}

.header-title:hover{
  scale: 0.995;
  cursor: pointer;
}

.contact{
  display: flex;
  flex-direction: row;
  gap: 16px;
  height: 100%;
  align-items: center;
}

.contact-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: #000000;
  display: flex;
  outline: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-button:hover{
    background: rgba(0, 0, 0, 0.03);
  scale: 0.95;
}

.header-title{
  display: flex;
  flex-direction: column;
  width: 100%;
}


.header-title, p {
   font-weight: 500;
   line-height:20px;
}
.process-caption{
  bottom: 16px;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
}

.page-close:hover {
  background: #ffffff;
  border-color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-1);
}

.back-to-top {
  right: 40px;
  bottom: 40px;
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
  border: 0;
}

.back-to-top:hover {
  background: #ffffff;
  border-color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-1);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
Sticky section navigation
========================================================================== */
.case-nav {
  position: fixed;
  left: max(16px, calc((100vw - var(--frame-width)) / 2 - 330px));
  top: 40px;
  bottom: 40px;
  z-index: 120;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  padding: 16px;
  background: rgb(255, 255, 255);
  /* M3/Elevation Light/1 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02), 0 1px 3px 1px rgba(0, 0, 0, 0.02);
}

.case-nav__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.63);
  border-radius: 4px;
  text-decoration: none;
  padding: 12px 12px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
}

.case-nav__link.active {
  color: #000;
  border-color: #000;
  background: rgb(217, 227, 246);
}

.case-nav--green .case-nav__link.active {
  background: #e2efdd;

}

.case-nav--purple .case-nav__link.active {
  background: #EFD3EA;

}

.case-nav--indigo .case-nav__link.active {
  background: #D7EAF4;

}

.case-nav--li .case-nav__link.active {
  background: #b3d8ee;

}

.case-nav--hia .case-nav__link.active {
  background: #E3CBEF;

}

.case-nav--grey .case-nav__link.active {
  background: #e7eaee;

}

.case-nav--portfolio .case-nav__link.active {
  background: #e7eaee;
}

.case-nav--odw .case-nav__link.active {
  background: #F5E0D2;

}

.case-nav__link:hover {
  color: #000;
  border-color: #000000bc;
  background: rgb(227, 227, 227);
}

.case-nav__link--ai-pulse {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  color: rgba(0, 0, 0, 0.55);
  background:
    linear-gradient(90deg, rgba(215, 234, 244, 0), rgba(231, 234, 238, 0));
  box-shadow:
    inset 0 0 0 1px rgba(55, 150, 255, 0),
    0 0 0 rgba(55, 150, 255, 0);

  animation: ai-nav-glow 2s ease-in-out infinite;
}

.case-nav__link--ai-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(circle at 15% 50%, rgba(95, 220, 255, 0), transparent 24%),
    radial-gradient(circle at 85% 50%, rgba(60, 125, 255, 0), transparent 26%);
  opacity: 0.45;

  animation: ai-nav-electric-breathe 2s ease-in-out infinite;
}

.case-nav__link--ai-pulse::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  z-index: -1;

  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.85),
    rgba(110, 225, 255, 0.75),
    transparent
  );

  transform: skewX(-18deg);
  animation: ai-nav-electric-flash 2s ease-in-out infinite;
}

/* Keep the AI highlight visible even when the scroll spy marks it active */
.case-nav__link--ai-pulse.active {
  color: #000;
  background:
    linear-gradient(90deg, rgba(205, 232, 255, 1), rgba(231, 234, 238, 1));
  box-shadow:
    inset 0 0 0 1px rgba(55, 150, 255, ),
    0 0 18px rgba(55, 150, 255, 0);
}

@keyframes ai-nav-glow {
  0%,
  72%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(55, 150, 255, 0),
      0 0 0 rgba(55, 150, 255, 0);
  }

  82% {
    box-shadow:
      inset 0 0 0 1px rgba(55, 150, 255, 0),
      0 0 16px rgba(55, 150, 255, 0);
  }
}

@keyframes ai-nav-electric-breathe {
  0%,
  72%,
  100% {
    opacity: 0.35;
  }

  82% {
    opacity: 0.85;
  }
}

@keyframes ai-nav-electric-flash {
  0%,
  68% {
    left: -45%;
    opacity: 0;
  }

  74% {
    opacity: 1;
  }

  86% {
    left: 110%;
    opacity: 0.75;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-nav__link--ai-pulse,
  .case-nav__link--ai-pulse::before,
  .case-nav__link--ai-pulse::after {
    animation: none;
  }

  .case-nav__link--ai-pulse {
    box-shadow: inset 0 0 0 1px rgba(55, 150, 255, 0);
  }
}

/* ==========================================================================
Image preview modal
========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
}

.modal.open {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: 80%;
  height: 80%;
  background: #000000;
  overflow: hidden;
  box-shadow: var(--shadow-frame);
  padding: 48px;
  border-radius: 16px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font-size: 28px;
  line-height: 1;
}

.modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
Fullscreen and modal scroll locking
========================================================================== */
body.modal-open,
body.deck-open {
  overflow: hidden;
}

/* Deck controls grouped layout */
.deck-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

/* Left group: prev / counter / next */
.deck-controls__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Right group: fullscreen / close */
.deck-controls__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Keep close hidden normally */
.deck-controls [data-deck-close] {
  display: none;
}

/* Show close only in fullscreen */
.deck.is-fullscreen .deck-controls [data-deck-close] {
  display: inline-flex;
}

/* Make sure icon buttons align correctly */
.deck-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Make SVG img icons consistent */
.deck-controls button img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.outcome-one{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
Resource cards and prototype panels
========================================================================== */
.resource-grid {
  width: 100%;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--page-gray);
  padding: 12px;
  display: flex;
  flex-direction: row;
  color: #7A7B7B;
  text-decoration: none;
  min-height: 64px;
  align-items: flex-end;
  justify-content: space-between;
}

.resource-card-text {
  width: 135px;
  flex: 0 0 135px;
}

.resource-card img{
  width: 20px;
  margin: 3px;
}

.resource-card:hover {
  outline-color: #000;
  background: #f5f6f7;
}

.prototype-panel{
  width: 100%;
  border-radius: var(--radius-card);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 16px;
}

.prototype-panel-one{
  width: 100%;
  border-radius: var(--radius-card);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--white);
  padding: 16px;
}

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

.external-feature-card {
  position: relative;
  min-height: 360px;
  width: 100%;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #000;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  text-decoration: none;
}

.external-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, #000 100%);
  z-index: 1;
}

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

.external-feature-card:hover{
  scale: calc(0.995);
}
.external-feature-card span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
}

.filler-x{
  display: flex;
  height: 400px;
  width: 100%;
  margin-top: 24px;
  justify-content: center;
  flex-direction: row;
  padding-right:16px;
  padding-left: 16px;
  text-align: center ;
}

.filler-y{
  display: flex;
  width: 100%;
  margin-top: 24px;
  justify-content: center;
  flex-direction: row;
  padding-right:16px;
  padding-left: 16px;
  text-align: center ;
}


/* ==========================================================================
Ambetronics iOS focus banner
========================================================================== */
.ios-focus {
  position: relative;
  width: 100%;
  min-height: 240px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url(assets/images/iOSFocus.png);
  background-repeat: no-repeat;
  background-size: fit-content;
  background-position: center top;
  background-color: var(--white);
}

.ios-focus__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-width));
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 48px;
}

.ios-focus__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 11px;
  overflow: hidden;
}

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

.ios-focus__text {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  word-break: normal;
}

.mutate{
  position: relative;
  z-index: 1;
}

.principle-card__number {
  position: absolute;
  right: 16px;
  bottom:5%;
  color: rgba(0, 0, 0, 0.05);
  font-family: Roboto, Arial, sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 96px;
  letter-spacing: 0;
  pointer-events: none;
}

.special{
  border-radius: 0px;
  background-color: white;
}

/* ==========================================================================
AI workflow resource links
========================================================================== */
.resource-card-help {
  color: #00000080;
  font-size: 15.5px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
}

.resource-card-help :hover{
  color: #410060;
}

.external-link-icon{
  width: 17px;
  height: 17px;
}

.resource-grid-help {
  width: 100%;
  display: flex;
  gap: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ==========================================================================
How-I-use-AI card grid
========================================================================== */
.hia-section {
  width: 100%;
}

.hia-grid {
  --gap: 24px;
  --card-ratio: 185.5 / 272;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 185.5px));
  gap: var(--gap);
  align-items: start;
}

/* ==========================================================================
Portfolio landing page cards
========================================================================== */
.portfolio-work-card {
  --card-bg: #f5f6f7;
  --card-visual-w: 256px;
  --card-visual-h: 100%;
  --card-img-w: 100%;
  --card-img-h: 100%;
  --card-img-left: 0%;
  --card-img-top: 0%;

  width: 100%;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--card-bg);
  overflow: hidden;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.portfolio-work-card:hover {
  transform: scale(0.995);
  cursor: pointer;
}

.portfolio-work-card:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

.portfolio-work-card__copy {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: left;
  box-sizing: border-box;
}

.portfolio-work-card__copy h3 {
  margin: 0 0 24px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000000;
}

.portfolio-work-card__copy h3 span {
  display: block;
}

.portfolio-work-card__copy p {
  max-width: 100%;
  margin: 0;
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5);
}



.portfolio-work-card__visual {
  position: relative;
  width: var(--card-visual-w);
  height: var(--card-visual-h);
  flex: 0 0 var(--card-visual-w);
  align-self: stretch;
  overflow: hidden;
  box-sizing: border-box;
}

.portfolio-work-card__image {
  position: absolute;
  top: var(--card-img-top);
  left: var(--card-img-left);
  width: var(--card-img-w);
  height: var(--card-img-h);
  max-width: none;
  display: block;
  object-fit: cover;
  pointer-events: none;
}


.portfolio-work-card--white {
  background: var(--white);
}

.portfolio-work-card--dark{
  background: #f5f6f7;
}

/* ==========================================================================
Desktop card-specific image crops
========================================================================== */

/* Ambetronics Flame Sensor App */
.portfolio-work-card--ambetronics {
  --card-img-w: 97.71%;
  --card-img-h: 162.66%;
  --card-img-left: 0.56%;
  --card-img-top: 8.97%;
}

/* MAW’s Lottery Reconciliation System */
.portfolio-work-card--lottery {
  --card-img-w: 100%;
  --card-img-h: 166.47%;
  --card-img-left: 0.15%;
  --card-img-top: 9.26%;
}

/* Designing for Trust */
.portfolio-work-card--trust {
  --card-img-w: 100%;
  --card-img-h: 166.47%;
  --card-img-left: 0.15%;
  --card-img-top: 9.26%;
}

/* How I Use AI for UX/UI Research and Design */
.portfolio-work-card--ai-research {
  --card-bg: #ffffff;
  --card-visual-w: 280px;
  --card-img-w: 208.79%;
  --card-img-h: 121.14%;
  --card-img-left: -18.4%;
  --card-img-top: -1.74%;

  padding-right: 0;
}

/* Rapid Prototyping with Figma MCP and AI */
.portfolio-work-card--rapid {
  --card-visual-w: 256px;
  --card-visual-h: 256px;
  --card-img-w: 100%;
  --card-img-h: 56.25%;
  --card-img-left: 0.05%;
  --card-img-top: 22.07%;
  --card-bg: #ffffff;
  align-items: center;
}

.portfolio-work-card--rapid .portfolio-work-card__visual {
  align-self: center;
  border-radius: 50%;
  background: #000000;
}

/* Winix Filter Replacement Flow */
.portfolio-work-card--winix {
  --card-img-w: 220.83%;
  --card-img-h: 100%;
  --card-img-left: -60.42%;
  --card-img-top: 6.19%;
}

/* Research-Led Workplace Design */
.portfolio-work-card--workplace {
  --card-visual-w: 280px;
  --card-img-w: 243.92%;
  --card-img-h: 120.71%;
  --card-img-left: -27.65%;
  --card-img-top: 2.58%;

  padding-right: 0;
}

/* Design Across Screens and Spaces */
.portfolio-work-card--spaces {
  --card-visual-w: 280px;
  --card-img-w: 327.68%;
  --card-img-h: 162.29%;
  --card-img-left: -125.91%;
  --card-img-top: -0.04%;

  padding-left: 0;
}

/* ==========================================================================
Responsive layout rules
========================================================================== */
@media (max-width: 768px) {
  .portfolio-work-card {
    height: 486px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 24px 24px 0;
    text-align: center;
  }

  .portfolio-work-card__copy {
    order: 1;
    width: 100%;
    height: 147px;
    flex: 0 0 147px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .portfolio-work-card__copy h3 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .portfolio-work-card__copy p {
    max-width: 300px;
    text-align: center;
  }

  .portfolio-work-card__visual {
    order: 2;
    width: var(--card-visual-w);
    height: var(--card-visual-h);
    flex: 0 0 var(--card-visual-h);
    align-self: center;
  }

  /* Ambetronics Flame Sensor App - Mobile */
  .portfolio-work-card--ambetronics {
    --card-visual-w: 255px;
    --card-visual-h: 290px;
    --card-img-w: 98.09%;
    --card-img-h: 178.36%;
    --card-img-left: -0.02%;
    --card-img-top: 0.18%;
  }

  .portfolio-work-card--ambetronics .portfolio-work-card__copy {
    max-width: 276px;
  }

  /* MAW’s Lottery Reconciliation System - Mobile */
  .portfolio-work-card--lottery {
    --card-visual-w: 256px;
    --card-visual-h: 290px;
    --card-img-w: 100%;
    --card-img-h: 182.55%;
    --card-img-left: -0.24%;
    --card-img-top: 0.49%;
  }

  /* Designing for Trust - Mobile */
  .portfolio-work-card--trust {
    --card-visual-w: 256px;
    --card-visual-h: 339px;
    --card-img-w: 100%;
    --card-img-h: 156.16%;
    --card-img-left: -0.44%;
    --card-img-top: 0.42%;
  }

  .portfolio-work-card--trust .portfolio-work-card__copy {
    height: auto;
    flex: 0 0 auto;
  }

   /* How I Use AI for UX/UI Research and Design - Mobile */
  .portfolio-work-card--ai-research {
    --card-bg: #ffffff;
    --card-visual-w: 337px;
    --card-visual-h: 290px;
    --card-img-w: 181.67%;
    --card-img-h: 148.25%;
    --card-img-left: -11%;
    --card-img-top: -13.23%;

    padding-right: 0;
  }

  .portfolio-work-card--ai-research .portfolio-work-card__visual {
    align-self: flex-end;
    margin-right: 0;
  }

  /* Rapid Prototyping with Figma MCP and AI - Mobile */
  .portfolio-work-card--rapid {
    --card-bg: #ffffff;
    --card-visual-w: 256px;
    --card-visual-h: 256px;
    --card-img-w: 100%;
    --card-img-h: 56.25%;
    --card-img-left: 0.05%;
    --card-img-top: 22.07%;

    padding: 24px;
  }

  .portfolio-work-card--rapid .portfolio-work-card__copy {
    max-width: 276px;
  }

  .portfolio-work-card--rapid .portfolio-work-card__visual {
    flex: 0 0 256px;
  }

  /* Winix Filter Replacement Flow - Mobile */
  .portfolio-work-card--winix {
    --card-visual-w: 337px;
    --card-visual-h: 290px;
    --card-img-w: 157.01%;
    --card-img-h: 102.63%;
    --card-img-left: -31.91%;
    --card-img-top: -2.65%;

    padding-right: 0;
  }

  .portfolio-work-card--winix .portfolio-work-card__copy {
    padding-right: 24px;
  }

  /* Research-Led Workplace Design - Mobile */
  .portfolio-work-card--workplace {
    --card-visual-w: 590px;
    --card-visual-h: 290px;
    --card-img-w: 120%;
    --card-img-h: 120%;
    --card-img-left: 0%;
    --card-img-top: 0;

    padding-right: 0;
  }

  .portfolio-work-card--workplace .portfolio-work-card__copy {
    padding-right: 24px;
  }

  /* Design Across Screens and Spaces - Mobile */
  .portfolio-work-card--spaces {
    --card-visual-w: 337px;
    --card-visual-h: 290px;
    --card-img-w: 272.26%;
    --card-img-h: 162.29%;
    --card-img-left: -99.04%;
    --card-img-top: -3.26%;

    padding-right: 0;
    padding-left: 24px;
  }

  .portfolio-work-card--spaces .portfolio-work-card__copy {
    padding-right: 24px;
  }
}

/* Smaller phones */
@media (max-width: 460px) {
  .portfolio-work-card {
    height: 486px;
  }

  /* Research-Led Workplace Design - Mobile */
  .portfolio-work-card--workplace {
    --card-visual-w: 390px;
    --card-visual-h: 290px;
    --card-img-w: 120%;
    --card-img-h: 120%;
    --card-img-left: 0%;
    --card-img-top: 0;

    padding-right: 0;
  }

  
  .portfolio-work-card__copy p {
    max-width: 100%;
  }
}

/* ==========================================================================
Portfolio aboutn
========================================================================== */
.about-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-accordion__item {
  width: 100%;
  border-radius: var(--radius-card);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  overflow: hidden;
}

.about-accordion__item[open] {
  background: var(--white);
}

.about-accordion__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-accordion__summary::-webkit-details-marker {
  display: none;
}

.about-accordion__summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.55);
}

.about-accordion__item[open] .about-accordion__summary::after {
  content: "–";
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.about-accordion__summary:hover {
  background: rgba(0, 0, 0, 0.03);
}

.about-accordion__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 16px 16px 16px;
}

.about-accordion__content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==========================================================================
Interest and portfolio support layouts
========================================================================== */
.section-inner--interests {
  padding-top:64px;
}

.section-inner--portfolio {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.section-inner--portfolio p {
  font-weight:  200;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.evidence-card {
  width: 100%;
  /*min-height: 520px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 64px 36px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}

.evidence-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  min-width: 0;
}

.evidence-card__text {
  width: 100%;
  max-width: 444px;
}

.evidence-card__text h2 {
  margin: 0 0 12px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 36px;
  line-height: 42px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000000;
}

.evidence-card__text p {
  max-width: 100%;
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.evidence-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 5px;
  background: #000000;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.evidence-card__cta:hover {
  scale: 0.99;
  color: var(--white);
}

.evidence-card__cta:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.hero-section-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 100px;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 5px;

  background: #000000;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;

  transform: translateZ(0);
  transition:
    transform 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-section-cta span {
  position: relative;
  z-index: 2;
}

.hero-section-cta--white{
  color: #000000;
  background-color: var(--white);
  outline: 1px solid #000000;
  outline-offset: -1px;
}

/* Default hover for normal CTA buttons */
.hero-section-cta:hover {
  transform: scale(1);
  color: var(--white);
}

.hero-section-cta:focus-visible {
  outline: 0px solid #000000;
  outline-offset: 3px;
}

/* Electric layer */
.hero-section-cta--electric::before,
.hero-section-cta--electric::after {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-section-cta--electric::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(105, 220, 255, 0), transparent 22%),
    radial-gradient(circle at 80% 70%, rgba(50, 120, 255, 0), transparent 24%),
    linear-gradient(90deg, transparent, rgba(120, 230, 255, 0), transparent);
  filter: blur(7px);
}

.hero-section-cta--electric::after {
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 28%,
      rgba(255, 255, 255, 0.95) 45%,
      rgba(95, 220, 255, 0.95) 50%,
      transparent 68%,
      transparent 100%
    );
  transform: translateX(-120%);
}

.hero-section-cta--electric:hover,
.hero-section-cta--electric:focus-visible {
  color: #ffffff;
  background: #020817;
  transform: scale(1);
  box-shadow:
    0 0 0 1px rgba(110, 220, 255, 0.5),
    0 0 18px rgba(80, 190, 255, 0.5),
    0 0 36px rgba(30, 105, 255, 0.5);
}

.hero-section-cta--electric:hover::before,
.hero-section-cta--electric:focus-visible::before {
  opacity: 1;
  animation: electric-pulse 700ms ease-in-out infinite alternate;
}

.hero-section-cta--electric:hover::after,
.hero-section-cta--electric:focus-visible::after {
  opacity: 1;
  animation: electric-sweep 900ms ease-in-out infinite;
}

/* Profile image crossfade */
.evidence-card__image-wrap {
  position: relative;
  width: 244px;
  height: 243px;
  flex: 0 0 243px;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  align-self: center;
}

.evidence-card__image {
  position: absolute;
  top: -0.36%;
  left: -0.25%;
  width: 100.19%;
  height: 100.39%;
  max-width: none;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition:
    opacity 650ms ease,
    filter 650ms ease,
    transform 650ms ease;
}

.evidence-card__image--base {
  opacity: 1;
  z-index: 1;
  filter: none;
}

.evidence-card__image--hover {
  opacity: 0;
  z-index: 2;

  /* Makes profilec.png act like a subtle cyborg overlay */
  mix-blend-mode: normal;

  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.01);
}

/* Show profilec.png subtly over profile.png when AI Workflows is hovered */
.evidence-card:has(.hero-section-cta--electric:hover) .evidence-card__image--hover,
.evidence-card:has(.hero-section-cta--electric:focus-visible) .evidence-card__image--hover {
  opacity: 60%;
  transform: scale(1);
}

/* Keep profile.png fully visible underneath */
.evidence-card:has(.hero-section-cta--electric:hover) .evidence-card__image--base,
.evidence-card:has(.hero-section-cta--electric:focus-visible) .evidence-card__image--base {
  opacity: 100%;
  filter: none;
}

/* Optional subtle glow around the portrait while the CTA is electric 
.evidence-card:has(.hero-section-cta--electric:hover) .evidence-card__image-wrap,
.evidence-card:has(.hero-section-cta--electric:focus-visible) .evidence-card__image-wrap {
  box-shadow:
    0 0 24px rgba(70, 180, 255, 0.32),
    0 0 52px rgba(30, 105, 255, 0.18);
} */

@keyframes electric-sweep {
  0% {
    transform: translateX(-120%);
  }

  52% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes electric-pulse {
  from {
    filter: blur(7px);
    transform: scale(1);
  }

  to {
    filter: blur(10px);
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section-cta,
  .hero-section-cta--electric::before,
  .hero-section-cta--electric::after,
  .evidence-card__image {
    animation: none;
    transition-duration: 1ms;
  }
}

.section-inner--portfolio {

  gap: 64px;
}

.backstory-card__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

  
.backstory-card__text p {
  max-width: 100%;
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5);
}


.portfolio-section__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

  
.portfolio-section__text p {
  max-width: 100%;
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.signature {
  margin-top: 0px;
  max-width: 250px;
}

/* Tablet version */

/* ==========================================================================
Responsive layout rules
========================================================================== */
@media (max-width: 768px) {
  .evidence-card {
    min-height: 520px;
    padding: 64px 36px 0;
  }

  .evidence-card__text {
    max-width: 444px;
  }

  .evidence-card__text h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .evidence-card__text p {
    max-width: 100%;
  }

  .evidence-card__image-wrap {
    width: 244px;
    height: 243px;
    flex: 0 0 243px;
  }
}

/* Smaller phones */
@media (max-width: 460px) {
  .evidence-card {
    min-height: auto;
    padding: 48px 24px 0;
  }

  .evidence-card__text {
    max-width: 100%;
  }

  .evidence-card__text p {
    max-width: 100%;
  }

  .evidence-card__image-wrap {
    width: 244px;
    height: 243px;
    flex: 0 0 243px;
  }

  .header {
    gap: 0px;
  }

  .contact {
    flex-direction: row;
    gap: 8px;
    padding-top: 8px;
  }

  .portfolio-page .case-study h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .header-title h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .header-title p {
    font-size: 16px;
    line-height: 20px;
  }
}

.portfolio-work-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.portfolio-work-card:hover,
.portfolio-work-card:focus-visible {
  transform: scale(0.995);
  border-color: rgba(0, 0, 0, 0.35);
}

.portfolio-work-card:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

/* Card keeps the original Figma frame ratio */
.hia-card {
  display: block;
  width: 100%;
  aspect-ratio: var(--card-ratio);
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  text-decoration: none;

  transform: scale(1);
  transform-origin: center;
  transition: transform 180ms ease;
}

.hia-card:hover {
  transform: scale(0.98);
}

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

/* Tablet */
@media (max-width: 720px) {
  .hia-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Mobile: still 2 columns, just smaller */
@media (max-width: 480px) {
  .hia-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Very narrow phones */
@media (max-width: 360px) {
  .hia-grid {
    gap: 12px;
  }
}

/* Accessibility: avoid motion when user prefers reduced motion */

/* ==========================================================================
Reduced motion preferences
========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hia-card {
    transition: none;
  }

  .hia-card:hover {
    transform: none;
  }
}

/* ==========================================================================
Desktop and tablet navigation adjustments
========================================================================== */
@media (max-width: 1440px) {
  :root {
    --frame-width: 100vw;
    --content-width: min(604px, calc(100vw - 40px));
    --section-padding: 48px 20px;
  }

  body{
    background:#ffffff ;
  }

  .section--mcp{
    border-radius: 16px 16px 0 0;
  }

  .section--portfolio{
    border-radius: 0;
    padding-top:20px;
  }

  .section {
    scroll-margin-top: 112px;
  }
  

  .section--cover {
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--cover-blue) 0%, #000000 100%);
    color: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }



  .page-close {
    top: 34px;
    right: 16px;
    z-index: 160;
    /* M3/Elevation Light/1 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  }

  .case-study {
    margin: 0;
  }

  .section--cover {
    gap: 48px;
  }

  .screen-strip {
    min-height: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding-bottom: 4px;
  }

  .screen-shot {
    width: 150px;
    height: 306px;
  }

  .overview-list > div {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .logo-strip {
    flex-wrap: wrap;
    gap: 20px;
  }

  .deck:not(.is-fullscreen) .deck-viewport {
    height: auto;
    overflow: visible;
  }

  .deck:not(.is-fullscreen) .deck-slide {
    height: auto;
  }

  .deck:not(.is-fullscreen) .deck-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* Fix fullscreen deck layout without affecting normal deck view */
.deck.is-fullscreen {
  height: calc(100vh - 48px);
  max-height: calc(100vh - 48px);
  overflow: hidden;
}

/* Let viewport take only the available space above controls/note */
.deck.is-fullscreen .deck-viewport {
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  overflow: hidden;
}

/* Make active slide fill the available viewport */
.deck.is-fullscreen .deck-slide {
  height: 100%;
}

.deck.is-fullscreen .deck-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fit image inside fullscreen viewport instead of expanding the layout */
.deck.is-fullscreen .deck-slide img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Prevent controls and note from being pushed out */
.deck.is-fullscreen .deck-controls,
.deck.is-fullscreen .deck-note {
  flex: 0 0 auto;
}

@media (max-width: 768px) {

  .project-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    letter-spacing: 0.5px;
  } 
  .deck.is-fullscreen {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    outline: 0;
    overflow: hidden;
  }

  .deck.is-fullscreen .deck-viewport {
    flex: 1 1 0;
    min-height: 0;
    height: auto;
    overflow: hidden;
    border-radius: 0;
  }

  .deck.is-fullscreen .deck-slide {
    height: 100%;
  }

  .deck.is-fullscreen .deck-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .deck.is-fullscreen .deck-slide img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .deck.is-fullscreen .deck-controls {
    flex: 0 0 auto;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .deck.is-fullscreen .deck-note {
    flex: 0 0 auto;
    max-height: 32vh;
    overflow-y: auto;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

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

}

/* ==========================================================================
   Image loading skeletons
   ========================================================================== */

:root {
  --image-skeleton-bg: #e5e6e7;
  --image-skeleton-highlight: #f3f4f5;
}

.image-load-target {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.image-load-target > .image-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--image-skeleton-bg) 0%,
      var(--image-skeleton-highlight) 50%,
      var(--image-skeleton-bg) 100%
    );
  background-size: 200% 100%;
  animation: image-skeleton-shimmer 1.2s ease-in-out infinite;
}

.image-load-target.image-is-loading > img,
.image-load-target.image-is-loading > picture img {
  opacity: 0 !important;
}

.image-load-target > img,
.image-load-target > picture img {
  transition: opacity 180ms ease;
}

.image-load-target.image-has-error {
  background: rgba(0, 0, 0, 0.04);
}

.image-button.image-is-loading::after {
  opacity: 0 !important;
}

/* Reserve space for image wrappers that otherwise collapse before image load */
.image-button.image-is-loading {
  min-height: 220px;
  aspect-ratio: var(--image-skeleton-ratio, 16 / 9);
  background: var(--image-skeleton-bg);
}

.figure-image--wide.image-is-loading {
  min-height: 300px;
  aspect-ratio: 16 / 9;
}

.deck-slide.active.image-is-loading {
  min-height: 260px;
  aspect-ratio: 16 / 9;
  background: var(--image-skeleton-bg);
}

.figure-pair > .image-button.image-is-loading,
.persona-grid > .image-button.image-is-loading {
  min-height: 180px;
  aspect-ratio: 1 / 1;
}

.hia-card.image-is-loading,
.portfolio-work-card__visual.image-is-loading,
.evidence-card__image-wrap.image-is-loading,
.ios-focus__icon.image-is-loading,
.external-feature-card.image-is-loading {
  background: var(--image-skeleton-bg);
}

/* Keep fixed-size components stable */
.portfolio-work-card__visual.image-is-loading,
.evidence-card__image-wrap.image-is-loading,
.ios-focus__icon.image-is-loading,
.hia-card.image-is-loading,
.external-feature-card.image-is-loading {
  min-height: initial;
}

@keyframes image-skeleton-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@media (max-width: 640px) {
  .image-button.image-is-loading {
    min-height: 160px;
  }

  .figure-image--wide.image-is-loading {
    min-height: 220px;
  }

  .deck-slide.active.image-is-loading {
    min-height: 180px;
  }

  .figure-pair > .image-button.image-is-loading,
  .persona-grid > .image-button.image-is-loading {
    min-height: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-load-target > .image-skeleton {
    animation: none;
  }

  .image-load-target > img,
  .image-load-target > picture img {
    transition: none;
  }
}

/* ==========================================================================
   See it in practice deck modal
   ========================================================================== */

.practice-deck-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.practice-deck-modal.open {
  display: flex;
}

.practice-deck-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.practice-deck-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-frame);
}

.practice-deck-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 32px;
  height: 32px;
  border: 0;
  /*border: 1px solid rgba(0, 0, 0, 0.1);*/
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.practice-deck-modal__close:hover {
  background: rgb(227, 227, 227);
}



.practice-deck-modal__close img {
  width: 20px;
  height: 20px;
}

.practice-deck-modal__header {
  display: flex;
  height: 65px;
  flex: 0 0 auto;
  padding: 16px 64px 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #f5f6f7;
  justify-content: center;
  align-items: center;
}

.practice-deck-modal__eyebrow {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.practice-deck-modal__header h2 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.deck--practice {
  width: 100%;
  min-height: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #ffffff;
}

.deck--practice .deck-viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  aspect-ratio: 16 / 9;
}

.deck--practice .deck-slide {
  height: 100%;
  background: #ffffff;
}

.deck--practice .deck-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck--practice .deck-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.deck--practice .deck-controls {
  flex: 0 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #f0f3f5;
}

.deck--practice .image-button::after {
  display: none;
}

body.practice-deck-open {
  overflow: hidden;
}

.practice-deck-modal .deck.is-fullscreen {
  z-index: 280;
  background: #ffffff;
}

@media (max-width: 768px) {
  .practice-deck-modal {
    padding: 0;
  }

  .practice-deck-modal__dialog {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .practice-deck-modal__header {
    padding: 14px 64px 14px 16px;
  }

  .practice-deck-modal__header h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .deck--practice .deck-viewport {
    flex: 1 1 0;
    aspect-ratio: auto;
  }

  .deck--practice .deck-slide,
  .deck--practice .deck-slide.active {
    height: 100%;
  }

  .deck--practice .deck-controls {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

.cta-buttons{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}



/* ==========================================================================
   Mobile full-screen navigation + navbar back button
   Keep this as the only mobile-nav CSS block.
   ========================================================================== */

/* Desktop/tablet-wide case-study back control */
body:not(.portfolio-page) .page-close {
  left: 44px;
  right: auto;
  color: #000;
}

body:not(.portfolio-page) .page-close svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* JS-injected mobile nav is desktop-hidden by default */
.mobile-site-nav,
.mobile-nav-overlay {
  display: none;
}

@media (max-width: 1440px) {
  body {
    padding-top: 72px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .header {
    display: none !important;
  }

  .case-nav {
    display: none !important;
  }

  body:not(.portfolio-page) .page-close {
    display: none !important;
  }

  .mobile-site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 600;
    height: 72px;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-site-brand {
    justify-self: center;
    min-width: 0;
    color: #000;
    text-align: center;
    text-decoration: none;
  }

  .mobile-site-name,
  .mobile-site-title {
    display: block;
    white-space: nowrap;
  }

  .mobile-site-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .mobile-site-title {
    margin-top: 1px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(0, 0, 0, 0.56);
  }

  .mobile-nav-spacer {
    width: 44px;
    height: 44px;
  }

  .mobile-nav-back,
  .mobile-menu-button,
  .mobile-nav-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0000000e;
    /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10), 0 1px 3px rgba(0, 0, 0, 0.10);*/
  }

  .mobile-nav-back {
    justify-self: start;
  }

  .mobile-menu-button {
    justify-self: end;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu-button span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-back:hover,
  .mobile-menu-button:hover,
  .mobile-nav-close:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .mobile-nav-back:focus-visible,
  .mobile-menu-button:focus-visible,
  .mobile-nav-close:focus-visible,
  .mobile-nav-link:focus-visible,
  .mobile-nav-email:focus-visible {
    outline: 2px solid #000;
    outline-offset: 4px;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 700;
    background: #fff;
    color: #000;
  }

  .mobile-nav-overlay:not([hidden]) {
    display: block;
  }

  .mobile-nav-overlay[hidden] {
    display: none !important;
  }

  .mobile-nav-panel {
    min-height: 100dvh;
    padding-top: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 14px;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-top {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-profile {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-nav-profile-name {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .mobile-nav-profile-title {
    display: none;
  }

  .mobile-nav-close {
    position: absolute;
    top: 0;
    right: 0;
    flex: 0 0 44px;
  }

  .mobile-nav-close svg {
    display: block;
    width: 22px;
    height: 22px;
  }

  .mobile-nav-links {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-nav-link {
    padding: 12px 0;
    color: rgba(0, 0, 0, 0.58);
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: #000;
  }

  .mobile-nav-contact {
    margin-top: auto;
    padding-top: 8px;
    padding-left: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
  }

  .mobile-nav-email {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }

  .mobile-nav-email::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background: currentColor;
    -webkit-mask: url("assets/icons/mail.svg") center / contain no-repeat;
    mask: url("assets/icons/mail.svg") center / contain no-repeat;
  }

  .back-to-top {
    z-index: 520;
  }
}

@media (max-width: 480px) {
  .mobile-site-nav {
    padding-inline: 16px;
  }

  .mobile-nav-panel {
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-nav-link {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ==========================================================================
   Landing page only: left-align mobile navbar identity
   ========================================================================== */

@media (max-width: 1440px) {
  body.portfolio-page .mobile-site-nav {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  body.portfolio-page .mobile-nav-spacer {
    display: none;
  }

  body.portfolio-page .mobile-site-brand {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  body.portfolio-page .mobile-menu-button {
    grid-column: 2;
    justify-self: end;
  }
}

/* ==========================================================================
   Remove top-section rounded borders below 1440px
   ========================================================================== */

@media (max-width: 1440px) {
  .case-study {
    margin-top: 0;
  }

  .cta-buttons{
    gap: 16px;
  }

  .evidence-card__text h2 {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .case-study > .section:first-child,
  .case-study > section:first-child,
  .section--cover,
  .section--portfolio,
  .section--mcp {
    border-radius: 0 !important;
  }
}


@media (min-width: 1440.01px) {
  body:not(.portfolio-page) .page-close {
    top: 44px;
    right: 44px;
    left: auto;
    display: grid;
  }

  body:not(.portfolio-page) .page-close svg {
    display: none !important;
  }

  body:not(.portfolio-page) .page-close::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    background: currentColor;
    -webkit-mask: url("assets/icons/close-large.svg") center / contain no-repeat;
    mask: url("assets/icons/close-large.svg") center / contain no-repeat;
  }
}