@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #08090b;
  --bg-soft: #0e1014;
  --surface: #13161b;
  --surface-2: #1a1e25;
  --text: #f4f1e9;
  --muted: #a6a7aa;
  --muted-2: #7f8288;
  --line: rgba(244, 241, 233, .12);
  --line-strong: rgba(244, 241, 233, .22);
  --accent: #ff6326;
  --accent-bright: #ff7a43;
  --blue: #5d68ff;
  --green: #63d991;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
  --container: 1440px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: #090a0c; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 10000;
  padding: .8rem 1rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10001;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

.container { width: min(calc(100% - 80px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 150px 0; }
.section-index, .eyebrow, .kicker {
  font-family: var(--mono);
  font-size: .7rem;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-index { display: block; color: var(--muted-2); }
.kicker { margin: 22px 0 0; color: var(--accent); }
.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.2vw, 8.3rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.display-title em { color: var(--accent); font-style: normal; }
.section-heading {
  display: grid;
  grid-template-columns: .85fr 1.6fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 85px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 max(30px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .35s, border-color .35s, backdrop-filter .35s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(8, 9, 11, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
body.menu-open .site-header { background: #08090b; backdrop-filter: none; }
.brand { width: 124px; position: relative; z-index: 1002; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  color: rgba(244, 241, 233, .72);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255, 99, 38, .62);
  color: var(--text);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--accent); border-color: var(--accent); color: #08090b; }
.menu-button, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #08090b;
}
.hero-media { position: absolute; inset: 0; transform: translateY(var(--hero-scroll, 0px)); will-change: transform; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; transform: scale(1.08) translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0px); transition: transform .8s var(--ease); will-change: transform; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .98) 0%, rgba(8, 9, 11, .85) 38%, rgba(8, 9, 11, .34) 68%, rgba(8, 9, 11, .48) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, .94) 0%, transparent 33%, rgba(8, 9, 11, .28) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), var(--container));
  min-height: 100svh;
  margin-inline: auto;
  padding: 122px 0 37px;
  display: flex;
  flex-direction: column;
}
.hero-topline { display: flex; justify-content: space-between; align-items: center; }
.status, .location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .65rem;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, .7);
}
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(99, 217, 145, .09); }
.hero-copy { width: 100%; min-width: 0; margin-top: auto; max-width: 1200px; padding-bottom: 36px; }
.hero .eyebrow { margin: 0 0 22px; color: rgba(244, 241, 233, .7); }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 9vw, 10.3rem);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero-title.reveal { opacity: 1; transform: none; }
.hero-line {
  display: block;
  overflow: hidden;
  /* Oswald ultrapassa a caixa de linha quando usado neste tamanho e line-height.
     A área extra preserva a animação de entrada sem cortar a base dos glifos. */
  padding-bottom: .16em;
  margin-bottom: -.16em;
}
.hero-line > span { display: inline-block; transform: translateY(112%); transition: transform 1s var(--ease); }
.hero-title.is-visible .hero-line:nth-child(1) > span { transform: translateY(0); transition-delay: .08s; }
.hero-title.is-visible .hero-line:nth-child(2) > span { transform: translateY(0); transition-delay: .16s; }
.hero-title.is-visible .hero-line:nth-child(3) > span { transform: translateY(0); transition-delay: .24s; }
.hero-title.is-visible .hero-line { animation: releaseHeroLine 0s linear 1.25s forwards; }
@keyframes releaseHeroLine { to { overflow: visible; } }
.hero h1 .hero-mode { display: inline-block; font-size: .49em; letter-spacing: -.018em; }
.hero h1 .hero-last { display: inline-block; color: var(--text); font-size: .82em; white-space: nowrap; }
.hero-summary { max-width: 690px; margin: 36px 0 0; color: rgba(244, 241, 233, .72); font-size: clamp(.98rem, 1.35vw, 1.18rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #08090b; }
.button-primary:hover, .button-primary:focus-visible { background: var(--accent-bright); }
.button-ghost { border-color: var(--line-strong); background: rgba(8, 9, 11, .24); backdrop-filter: blur(8px); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--text); }
.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(244, 241, 233, .16);
  background: rgba(8, 9, 11, .44);
  backdrop-filter: blur(12px);
}
.hero-rail > div { min-width: 0; min-height: 96px; display: flex; align-items: center; gap: 12px; padding: 18px 16px; border-right: 1px solid rgba(244, 241, 233, .12); }
.hero-rail > div:last-child { border-right: 0; }
.hero-rail strong { font-family: var(--display); font-size: 2.25rem; font-weight: 600; line-height: 1; }
.hero-rail span { min-width: 0; color: var(--muted); font-family: var(--mono); font-size: .61rem; line-height: 1.55; letter-spacing: .11em; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 3; right: 28px; bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 13px; }
.hero-scroll span { writing-mode: vertical-rl; font-family: var(--mono); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.hero-scroll i { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); }

.manifesto { background: var(--text); color: #0a0b0d; }
.manifesto-grid { display: grid; grid-template-columns: .35fr 1.75fr .7fr; gap: 60px; align-items: start; }
.manifesto .section-index { color: #66686d; }
.manifesto .kicker { margin-top: 0; color: #bd3b08; }
.manifesto .display-title em { color: #bd3b08; }
.manifesto .display-title { margin-top: 25px; font-size: clamp(3.9rem, 6.4vw, 7.2rem); }
.manifesto-side { padding-top: 48px; }
.manifesto-side p { color: #55585e; font-size: 1rem; line-height: 1.8; }
.text-link { display: inline-flex; gap: 25px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid #0a0b0d; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.services { background: var(--bg); }
.service-list { border-top: 1px solid var(--line); }
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: .18fr 1.15fr .56fr .58fr;
  gap: 45px;
  align-items: center;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background-color .35s;
}
.service-card::before { content: ""; position: absolute; inset: 0 -20px; z-index: -1; background: var(--surface); opacity: 0; transition: opacity .35s; }
.service-card:hover { padding-inline: 20px; }
.service-card:hover::before { opacity: 1; }
.service-number { color: var(--accent); font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; }
.service-card h3 { margin: 0 0 13px; font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.6rem); font-weight: 500; line-height: 1; text-transform: uppercase; }
.service-card p { max-width: 660px; margin: 0; color: var(--muted); font-size: .96rem; }
.service-card ul { margin: 5px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 6px 0; color: var(--muted); font-family: var(--mono); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
.service-card li::before { content: "+"; margin-right: 10px; color: var(--accent); }
.service-media { position: relative; height: 144px; margin: 0; overflow: hidden; background: var(--surface-2); }
.service-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.service-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) brightness(.84); transition: transform .7s var(--ease), filter .45s; }
.service-card:hover .service-media img { transform: scale(1.045); filter: saturate(1) brightness(.95); }

.studio { background: #0d0f13; overflow: hidden; }
.studio::before { content: ""; position: absolute; width: 800px; height: 800px; right: -300px; top: 200px; border-radius: 50%; background: rgba(93, 104, 255, .10); filter: blur(160px); pointer-events: none; }
.studio-heading { display: grid; grid-template-columns: 1.5fr .65fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.studio-heading .display-title { margin-top: 24px; }
.studio-heading > p { margin: 0 0 8px; color: var(--muted); line-height: 1.8; }
.studio-gallery { display: grid; grid-template-columns: 1fr 145px; gap: 14px; }
.gallery-main { position: relative; margin: 0; height: min(67vw, 760px); overflow: hidden; background: var(--surface); }
.gallery-main::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s, transform .8s var(--ease); }
.gallery-main.changing img { opacity: .25; transform: scale(1.015); }
.gallery-main figcaption { position: absolute; inset: auto 18px 18px; display: flex; justify-content: space-between; padding: 13px 15px; background: rgba(8, 9, 11, .82); backdrop-filter: blur(10px); font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 12px; }
.gallery-thumb { position: relative; flex: 1; min-height: 110px; padding: 0; border: 1px solid transparent; background: var(--surface); overflow: hidden; opacity: .48; transition: opacity .25s, border-color .25s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover, .gallery-thumb:focus-visible { opacity: .8; }
.gallery-thumb.active { opacity: 1; border-color: var(--accent); }
.gallery-thumb.active::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 2px #0d0f13; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border-top: 1px solid var(--line); }
.spec { padding: 30px 28px 10px 0; border-right: 1px solid var(--line); }
.spec + .spec { padding-left: 28px; }
.spec:last-child { border-right: 0; }
.spec > span { color: var(--muted-2); font-family: var(--mono); font-size: .6rem; letter-spacing: .15em; }
.spec strong { display: block; margin-top: 14px; font-family: var(--display); font-size: 2.1rem; font-weight: 500; text-transform: uppercase; }
.spec p { margin: 9px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }

.facilities { background: #11141a; overflow: hidden; }
.facilities::before { content: ""; position: absolute; left: -300px; top: -180px; width: 760px; height: 760px; border-radius: 50%; background: rgba(255, 99, 38, .07); filter: blur(140px); pointer-events: none; }
.facilities-heading { display: grid; grid-template-columns: .7fr 1.45fr .65fr; gap: 55px; align-items: end; margin-bottom: 72px; }
.facilities-heading .display-title { font-size: clamp(3.5rem, 5.8vw, 6.7rem); }
.facilities-heading > p { margin: 0 0 7px; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.facilities-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 300px; gap: 14px; }
.facility-card { position: relative; overflow: hidden; background: var(--surface); }
.facility-card picture, .facility-card img { width: 100%; height: 100%; }
.facility-card img { object-fit: cover; filter: saturate(.8) brightness(.77); transition: transform .9s var(--ease), filter .5s; }
.facility-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.facility-card:hover img { transform: scale(1.035); filter: saturate(.96) brightness(.83); }
.facility-control { grid-column: span 7; grid-row: span 2; }
.facility-dressing { grid-column: span 5; }
.facility-reception { grid-column: span 5; }
.facility-audio, .facility-compute, .facility-parking { grid-column: span 4; }
.facility-dressing img { object-position: 54% center; }
.facility-overlay { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(transparent 34%, rgba(8,9,11,.92)); }
.facility-overlay span { color: var(--accent); font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.facility-overlay h3 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.6rem); font-weight: 500; line-height: 1; text-transform: uppercase; }
.facility-overlay p { max-width: 540px; margin: 12px 0 0; color: rgba(244,241,233,.7); font-size: .78rem; line-height: 1.65; }
.redundancy-banner { margin-top: 14px; padding: 24px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); text-align: center; }
.redundancy-banner p { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; margin: 0; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--foreground); }
.redundancy-banner .sep { display: inline-block; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

.panorama-break { position: relative; height: clamp(430px, 48vw, 700px); margin: 0; overflow: hidden; background: var(--bg); }
.panorama-viewport { position: relative; width: 100%; height: 100%; overflow: hidden; touch-action: pan-y; cursor: grab; user-select: none; }
.panorama-viewport:active { cursor: grabbing; }
.panorama-break img { position: absolute; top: 0; left: 0; width: max(100%, 2048px); height: 100%; max-width: none; object-fit: cover; pointer-events: none; }
.panorama-break figcaption { position: absolute; z-index: 3; left: max(40px, calc((100vw - var(--container)) / 2)); bottom: clamp(78px, 8vw, 112px); max-width: 680px; pointer-events: none; }
.panorama-break figcaption span { display: block; color: var(--accent); font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.panorama-break figcaption strong { display: block; margin-top: 13px; font-family: var(--display); font-size: clamp(2.5rem, 4.6vw, 5.15rem); font-weight: 500; line-height: .96; text-transform: uppercase; }

.deliverables { background: var(--text); color: #0a0b0d; }
.deliverables-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; align-items: center; }
.deliverables-visual { position: relative; min-height: 670px; }
.screen { position: absolute; overflow: hidden; background: #0a0b0d; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.screen::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); pointer-events: none; }
.screen img { width: 100%; height: 100%; object-fit: cover; }
.screen span { position: absolute; left: 13px; bottom: 13px; padding: 8px 10px; background: rgba(8, 9, 11, .86); color: var(--text); font-family: var(--mono); font-size: .55rem; letter-spacing: .12em; }
.screen-landscape { left: 0; top: 0; width: 90%; aspect-ratio: 16 / 10; }
.screen-portrait { right: 0; bottom: 0; width: 36%; aspect-ratio: 9 / 16; border: 8px solid #0a0b0d; }
.screen-portrait img { object-position: 30% center; }
.deliverables-copy .section-index { color: #66686d; }
.deliverables-copy .kicker, .deliverables-copy .display-title em, .deliverable-list span { color: #bd3b08; }
.deliverables-copy .display-title { margin-top: 25px; font-size: clamp(3.3rem, 5vw, 6rem); }
.deliverables-copy > p:not(.kicker) { margin: 30px 0 0; color: #55585e; line-height: 1.8; }
.deliverable-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(10, 11, 13, .16); }
.deliverable-list li { display: flex; align-items: center; gap: 17px; padding: 12px 0; border-bottom: 1px solid rgba(10, 11, 13, .12); font-size: .84rem; font-weight: 600; }
.deliverable-list span { color: #bd3b08; font-family: var(--mono); font-size: .58rem; }

.portfolio { background: var(--bg); }
.portfolio-grid { display: grid; grid-template-columns: 1.45fr .75fr; grid-template-rows: repeat(2, 280px); gap: 16px; }
.work-card { position: relative; overflow: hidden; background: var(--surface); }
.work-card-featured { grid-row: 1 / 3; }
.work-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) brightness(.78); transition: transform .8s var(--ease), filter .5s; }
.work-card:hover img, .work-card:focus-visible img { transform: scale(1.04); filter: saturate(1) brightness(.72); }
.work-overlay { position: absolute; inset: 0; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(transparent 40%, rgba(8, 9, 11, .94)); }
.work-overlay span { font-family: var(--mono); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.work-overlay h3 { margin: 9px 0 0; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 3.5rem); line-height: 1; text-transform: uppercase; }
.work-overlay i { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: .58rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.work-card:hover i, .work-card:focus-visible i { opacity: 1; transform: translateY(0); }

.brands { position: relative; overflow: hidden; background: #090b0e; }
.brands::before { content: ""; position: absolute; width: 820px; height: 820px; right: -260px; top: -360px; border-radius: 50%; background: rgba(255, 99, 38, .1); filter: blur(150px); pointer-events: none; }
.brands-heading { display: grid; grid-template-columns: .55fr 1.25fr .7fr; gap: 55px; align-items: end; margin-bottom: 68px; }
.brands-heading .display-title { font-size: clamp(3.5rem, 5.9vw, 6.9rem); }
.brands-heading > p { margin: 0 0 8px; color: var(--muted); font-size: .9rem; line-height: 1.8; }
.brand-wall { --mx: 50%; --my: 50%; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: radial-gradient(520px circle at var(--mx) var(--my), rgba(93,104,255,.13), transparent 52%); }
.brand-card { position: relative; min-width: 0; aspect-ratio: 1.65 / 1; margin: 0; display: grid; place-items: center; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(19, 22, 27, .5); transition: background-color .4s var(--ease), transform .45s var(--ease), z-index 0s .45s; }
.brand-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 45%); opacity: 0; transition: opacity .35s; }
.brand-card img { width: 72%; height: 62%; object-fit: contain; filter: grayscale(1) saturate(0) contrast(.9); opacity: .52; mix-blend-mode: luminosity; transition: filter .45s, opacity .45s, transform .6s var(--ease), mix-blend-mode 0s; }
.brand-card figcaption { position: absolute; left: 16px; bottom: 12px; color: var(--muted-2); font-family: var(--mono); font-size: .52rem; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.brand-card:hover { z-index: 2; background: var(--text); transform: translateY(-6px); transition-delay: 0s; }
.brand-card:hover::before { opacity: 1; }
.brand-card:hover img { filter: none; opacity: 1; transform: scale(1.06); mix-blend-mode: normal; }
.brand-card:hover figcaption { color: #55585e; opacity: 1; transform: none; }
.brand-card-invert img { filter: grayscale(1) invert(1) brightness(1.25); opacity: .64; mix-blend-mode: normal; }
.brand-card-invert:hover img { filter: none; opacity: 1; }
.brands-foot { display: grid; grid-template-columns: .55fr 1fr auto; gap: 40px; align-items: center; padding: 30px 0 0; }
.brands-foot span { color: var(--accent); font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.brands-foot strong { font-family: var(--display); font-size: clamp(1.6rem, 2.4vw, 2.7rem); font-weight: 500; line-height: 1.1; text-transform: uppercase; }
.brands-foot i { color: var(--accent); font-family: var(--mono); font-style: normal; }

.process { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 120px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro .display-title { margin-top: 25px; font-size: clamp(3.5rem, 5.7vw, 6.8rem); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 72px 1fr; gap: 25px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--accent); font-family: var(--mono); font-size: .67rem; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: 2.2rem; font-weight: 500; line-height: 1; text-transform: uppercase; }
.process-list p { margin: 14px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }

.proof { background: var(--bg); padding-top: 90px; }
.proof-card { display: grid; grid-template-columns: .55fr 1.5fr .85fr; gap: 70px; align-items: center; padding: 70px; border: 1px solid var(--line); background: linear-gradient(130deg, var(--surface), rgba(19, 22, 27, .46)); }
.proof-score strong { display: block; font-family: var(--display); font-size: 5rem; line-height: .8; }
.proof-score > span { display: block; margin-top: 16px; color: var(--accent); letter-spacing: .12em; }
.proof-score small { display: block; margin-top: 10px; color: var(--muted); font-family: var(--mono); font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; }
.proof-statement { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.3vw, 3.7rem); line-height: 1.18; text-transform: uppercase; }
.proof-facts { border-left: 1px solid var(--line); padding-left: 40px; }
.proof-facts div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.proof-facts div:last-child { border-bottom: 0; }
.proof-facts b { display: block; font-family: var(--display); font-size: 1.8rem; font-weight: 500; text-transform: uppercase; }
.proof-facts span { color: var(--muted); font-size: .75rem; }

.faq { background: var(--text); color: #0a0b0d; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq .section-index { color: #66686d; }
.faq .kicker { margin-top: 22px; color: #bd3b08; }
.faq .display-title { margin-top: 25px; font-size: clamp(3.5rem, 5.8vw, 6.8rem); }
.faq .display-title em { color: #bd3b08; }
.faq-intro > p:last-child { max-width: 520px; margin: 30px 0 0; color: #55585e; line-height: 1.8; }
.faq-list { border-bottom: 1px solid rgba(10, 11, 13, .2); }
.faq-item { border-top: 1px solid rgba(10, 11, 13, .2); }
.faq-item summary { display: grid; grid-template-columns: 48px 1fr 28px; gap: 18px; align-items: center; padding: 30px 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: #a3360d; font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; }
.faq-item h3 { margin: 0; font-family: var(--display); font-size: clamp(1.65rem, 2.35vw, 2.7rem); font-weight: 500; line-height: 1.1; text-transform: uppercase; }
.faq-item summary i { position: relative; width: 22px; height: 22px; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 3px; top: 10px; width: 16px; height: 1px; background: #0a0b0d; transition: transform .3s var(--ease); }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0deg); }
.faq-answer { padding: 0 46px 32px 66px; }
.faq-answer p { max-width: 690px; margin: 0; color: #55585e; line-height: 1.8; }

.contact { background: var(--accent); color: #08090b; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.contact .section-index { color: #2b130a; }
.contact .kicker { color: #08090b; }
.contact h2 { max-width: 680px; margin: 25px 0 0; font-family: var(--display); font-size: clamp(3.7rem, 6.4vw, 7.2rem); font-weight: 600; line-height: .92; text-transform: uppercase; }
.contact-copy > p:not(.kicker) { max-width: 610px; margin: 30px 0 0; color: rgba(8, 9, 11, .72); }
.contact address { margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(8, 9, 11, .22); font-family: var(--mono); font-size: .68rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; align-self: start; padding: 42px; background: #0b0d10; color: var(--text); box-shadow: 0 34px 100px rgba(55, 18, 5, .27); }
.field { display: flex; flex-direction: column; gap: 10px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; padding: 10px 0 13px; background: transparent; color: var(--text); outline: none; transition: border-color .25s; }
.field input::placeholder, .field textarea::placeholder { color: #62656c; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field select { color-scheme: dark; }
.field textarea { resize: vertical; min-height: 110px; }
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.submit-button { justify-self: start; margin-top: 5px; border: 0; }
.submit-button:disabled { cursor: wait; opacity: .72; }
.form-note { align-self: center; margin: 5px 0 0; color: var(--muted-2); font-size: .7rem; }
.form-note[data-state="loading"] { color: #b9bbc0; }
.form-note[data-state="success"] { color: #7ddc9a; }
.form-note[data-state="error"] { color: #ff9270; }

.site-footer { padding: 85px 0 35px; background: #050608; }
.footer-main { display: grid; grid-template-columns: 1fr .65fr auto; gap: 60px; align-items: start; }
.footer-main img { width: 150px; }
.footer-main p { margin: 22px 0 0; color: var(--muted); font-size: .83rem; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-channel { display: inline-flex; width: fit-content; align-items: center; gap: 8px; margin-bottom: 3px; color: var(--accent); font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
.footer-channel i { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(99,217,145,.65); }
.footer-contact a { width: fit-content; color: var(--muted); font-family: var(--mono); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; transition: color .25s; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .footer-whatsapp { color: var(--text); font-size: .75rem; }
.footer-no-calls { max-width: 270px; margin: 1px 0 7px; color: #aeb0b6; font-size: .72rem; line-height: 1.55; }
.footer-top { padding-bottom: 5px; border-bottom: 1px solid var(--line-strong); font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 80px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted-2); font-family: var(--mono); font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; }

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  background: #25D366;
  color: #ffffff;
  border-radius: 26px;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover, .whatsapp-float:focus-visible { 
  transform: translateY(-4px); 
  background: #1EBE57; 
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

.reveal { --reveal-delay: 0ms; opacity: 0; transform: translateY(48px); filter: blur(5px); transition: opacity .85s var(--ease) var(--reveal-delay), transform .85s var(--ease) var(--reveal-delay), filter .85s var(--ease) var(--reveal-delay); }
.reveal-left { transform: translate3d(-14px, 24px, 0); }
.reveal-right { transform: translate3d(14px, 24px, 0); }
.reveal-scale { transform: translateY(24px) scale(.94); }
.reveal-title { transform: translateY(32px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.is-visible { filter: blur(0); }

@media (max-width: 1120px) {
  .container, .hero-inner { width: min(calc(100% - 52px), var(--container)); }
  .site-header { padding-inline: 26px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: .58rem; }
  .hero-rail { grid-template-columns: repeat(2, 1fr); }
  .hero-rail > div:nth-child(2) { border-right: 0; }
  .hero-rail > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .manifesto-grid { grid-template-columns: .2fr 1.4fr .7fr; gap: 35px; }
  .service-card { grid-template-columns: .14fr 1.05fr .5fr .55fr; gap: 28px; }
  .deliverables-grid, .contact-grid { gap: 65px; }
  .facilities-heading { grid-template-columns: .6fr 1.3fr .7fr; gap: 32px; }
  .proof-card { gap: 35px; padding: 45px; }
  .brands-heading { grid-template-columns: .45fr 1.25fr .7fr; gap: 32px; }
  .brand-wall { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { gap: 65px; }
}

@media (max-width: 900px) {
  .section { padding: 110px 0; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-title {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-line > span {
    transform: none;
    transition: none;
  }
  .site-header { height: 72px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .brand { width: 106px; }
  .menu-button { position: relative; z-index: 1002; display: flex; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
  .menu-button span { width: 23px; height: 1px; background: var(--text); transition: transform .3s, width .3s; }
  .menu-button span:last-child { width: 15px; margin-left: 8px; }
  .menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active span:last-child { width: 23px; margin-left: 0; transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; justify-content: center; padding: 100px 28px 45px; background: #08090b; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { padding: 16px 0; font-family: var(--display); font-size: clamp(2.2rem, 8vw, 4.3rem); line-height: 1; text-transform: uppercase; border-bottom: 1px solid var(--line); }
  .mobile-menu nav a:last-child { margin-top: 25px; color: var(--accent); }
  .mobile-menu p { margin: auto 0 0; color: var(--muted); font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
  .hero-inner { padding-top: 100px; }
  .hero-copy { padding-bottom: 34px; }
  .hero h1 { font-size: clamp(3.8rem, 14vw, 8.5rem); }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,9,11,.96), rgba(8,9,11,.67) 70%, rgba(8,9,11,.55)), linear-gradient(0deg, rgba(8,9,11,.98), transparent 55%); }
  .hero-scroll { display: none; }
  .section-heading, .studio-heading, .manifesto-grid, .facilities-heading, .deliverables-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; margin-bottom: 60px; }
  .section-heading .display-title { margin-top: 0; }
  .manifesto-grid { gap: 30px; }
  .manifesto-side { max-width: 550px; padding-top: 0; }
  .service-card { grid-template-columns: 55px 1fr .55fr; gap: 25px; }
  .service-card ul { grid-column: 2; display: flex; flex-wrap: wrap; gap: 5px 18px; }
  .service-media { grid-column: 3; grid-row: 1 / span 2; height: 100%; min-height: 170px; }
  .studio-heading { gap: 35px; }
  .studio-heading > p { max-width: 600px; }
  .gallery-main { height: 67vw; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(2) { border-right: 0; }
  .spec:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .facilities-heading { gap: 30px; }
  .facilities-heading > p { max-width: 600px; }
  .facilities-grid { grid-auto-rows: 260px; }
  .deliverables-grid { gap: 80px; }
  .deliverables-visual { width: min(100%, 680px); min-height: 600px; }
  .deliverables-copy { max-width: 670px; }
  .process-grid { gap: 70px; }
  .process-intro { position: static; }
  .brands-heading { grid-template-columns: 1fr; gap: 30px; }
  .brands-heading > p { max-width: 620px; }
  .brands-foot { grid-template-columns: .7fr 1.3fr auto; }
  .proof-card { grid-template-columns: .55fr 1.45fr; }
  .proof-facts { grid-column: 1 / -1; border: 0; border-top: 1px solid var(--line); padding: 25px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); }
  .proof-facts div { border: 0; }
  .faq-grid { gap: 60px; }
  .faq-intro { position: static; }
  .faq-intro > p:last-child { max-width: 600px; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 620px) {
  .container, .hero-inner { width: calc(100% - 36px); }
  .section { padding: 56px 0; }
  .display-title { font-size: clamp(2.6rem, 14vw, 5rem); }
  .hero-inner { padding: 92px 0 18px; }
  .location { display: none; }
  .hero-copy { margin-top: auto; padding-bottom: 25px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); line-height: .84; }
  .hero h1 .hero-mode { font-size: .43em; letter-spacing: -.012em; }
  .hero h1 .hero-last { font-size: .7em; }
  .hero-summary { margin-top: 26px; font-size: .91rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; min-height: 48px; }
  .hero-rail > div { min-height: 78px; padding: 13px; gap: 12px; }
  .hero-rail strong { font-size: 1.75rem; }
  .hero-rail span { font-size: .5rem; }
  .manifesto .display-title { font-size: clamp(2.5rem, 13vw, 4.7rem); }
  .section-heading { gap: 24px; margin-bottom: 40px; }
  .studio-heading { gap: 24px; margin-bottom: 46px; }
  .facilities-heading { gap: 24px; margin-bottom: 46px; }
  .deliverables-grid { gap: 48px; }
  .process-grid { gap: 44px; }
  .service-card { grid-template-columns: 35px 1fr; gap: 16px; padding: 32px 0; }
  .service-card:hover { padding-inline: 0; }
  .service-card::before { display: none; }
  .service-card h3 { font-size: 2rem; }
  .service-card p { font-size: .83rem; }
  .service-card ul { display: block; }
  .service-media { grid-column: 2; grid-row: auto; min-height: 0; height: 190px; margin-top: 8px; }
  .studio-gallery { grid-template-columns: 1fr; }
  .gallery-main { height: 72vw; min-height: 310px; }
  .gallery-thumbs { flex-direction: row; gap: 8px; }
  .gallery-thumb { height: 66px; min-height: 0; }
  .gallery-main figcaption { inset: auto 10px 10px; }
  .specs-grid { margin-top: 40px; }
  .spec { padding: 22px 15px 20px 0; }
  .spec + .spec { padding-left: 15px; }
  .spec:nth-child(3) { padding-left: 0; }
  .spec strong { font-size: 1.55rem; }
  .spec p { font-size: .72rem; }
  .facilities-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .facility-control, .facility-dressing, .facility-reception, .facility-audio, .facility-compute, .facility-parking { grid-column: auto; grid-row: auto; min-height: 330px; }
  .facility-control { min-height: 430px; }
  .facility-overlay { padding: 22px; }
  .facility-overlay p { font-size: .75rem; }
  .redundancy-banner { padding: 18px; margin-top: 24px; }
  .redundancy-banner p { flex-direction: column; gap: 12px; }
  .redundancy-banner .sep { display: none; }
  .panorama-break { height: 520px; }
  .panorama-break figcaption { left: 18px; right: 18px; bottom: 96px; }
  .deliverables-visual { min-height: 420px; }
  .screen-landscape { width: 94%; }
  .screen-portrait { width: 39%; border-width: 5px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: 390px repeat(2, 230px); }
  .work-card-featured { grid-row: auto; }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .brand-card { aspect-ratio: 1.45 / 1; }
  .brand-card img { width: 78%; height: 66%; filter: grayscale(.8) saturate(.35); opacity: .68; }
  .brand-card-invert img { filter: grayscale(1) invert(1) brightness(1.25); opacity: .7; }
  .brand-card figcaption { display: none; }
  .brands-foot { grid-template-columns: 1fr auto; gap: 18px; }
  .brands-foot span { grid-column: 1 / -1; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 10px; }
  .proof { padding-top: 70px; }
  .proof-card { grid-template-columns: 1fr; padding: 30px 24px; gap: 40px; }
  .proof-statement { font-size: 2.2rem; }
  .proof-facts { grid-template-columns: 1fr; }
  .proof-facts div { border-bottom: 1px solid var(--line); }
  .faq-grid { gap: 38px; }
  .faq-item summary { grid-template-columns: 34px 1fr 24px; gap: 10px; padding: 24px 0; }
  .faq-item h3 { font-size: 1.55rem; }
  .faq-answer { padding: 0 0 26px 44px; }
  .faq-answer p { font-size: .88rem; }
  .contact h2 { font-size: clamp(2.7rem, 14vw, 5rem); }
  .contact-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .field-wide { grid-column: auto; }
  .submit-button { width: 100%; min-height: 48px; }
  .form-note { margin-top: -12px; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { width: fit-content; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 55px; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-line > span { opacity: 1; transform: none; filter: none; clip-path: none; }
  .hero-title.is-visible .hero-line { overflow: visible; animation: none; }
  .hero-media img { transform: none; }
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.success-modal[hidden] {
  display: none !important;
}
.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: none;
  width: 100%;
  height: 100%;
}
.success-modal-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  text-align: center;
  z-index: 1;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  animation: modal-enter 0.4s var(--ease);
}
@keyframes modal-enter {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.success-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}
.success-modal-close:hover {
  color: var(--text);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(99, 217, 145, 0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.success-modal-content h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 12px;
}
.success-modal-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.success-modal-content .success-whatsapp-prompt {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text);
}
.success-modal-content .button {
  width: 100%;
}
