@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 650;
  font-display: swap;
}

:root {
  --ink: #161616;
  --ink-soft: #1c1c1c;
  --paper: #f2f2ef;
  --paper-deep: #e9e9e4;
  --milk: #ffffff;
  --coffee: #1c1c1c;
  --lime: #e4fe55;
  --acid: var(--lime);
  --caramel: var(--lime);
  --espresso: var(--ink-soft);
  --foam: var(--paper);
  --golden: var(--lime);
  --roast: var(--ink);
  --sweet-grey: #ecece8;
  --line: rgba(22, 22, 22, .16);
  --display: "Onest", Arial, sans-serif;
  --sans: "Onest", Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --radius: clamp(1.1rem, 2vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: .024;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body,
button,
a {
  cursor: default;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

em {
  font-family: var(--display);
  font-weight: inherit;
  font-style: normal;
}

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

.dark {
  color: var(--milk);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 auto auto 0;
  width: var(--scroll-progress, 0%);
  height: .2rem;
  background: var(--acid);
  pointer-events: none;
}

.footer-brand img {
  width: 7.6rem;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #1a100b;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-shade {
  background: rgba(0, 0, 0, .16);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 7rem var(--gutter) clamp(5rem, 9vh, 7.5rem);
}

.hero-kicker {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(15rem, 30vw, 27rem);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 .6rem 1.8rem rgba(0, 0, 0, .22));
  transform: translate3d(-50%, -50%, 0);
}

.hero-bottom {
  display: grid;
  gap: 1.5rem;
  margin-top: auto;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 7.6rem);
  font-family: var(--display);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.07em;
}

.hero-bottom > p {
  min-width: 0;
  width: 100%;
  max-width: 25rem;
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 1.35rem;
  display: flex;
  gap: .8rem;
  align-items: center;
  min-height: 2.75rem;
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: none;
}

.hero-scroll i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-style: normal;
}

.case-intro,
.system,
.closing {
  padding: clamp(5rem, 11vw, 10rem) var(--gutter);
}

.eyebrow {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow p {
  margin: 0;
}

.intro-grid {
  display: grid;
  gap: 2.5rem;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.intro-grid h1,
.intro-grid h2,
.brand-heading h2,
.brochure-heading h2,
.performance-head h2,
.section-heading h2,
.field-copy h2,
.strategy-head h2,
.operations h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6.7rem);
  font-family: var(--display);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.065em;
}

.intro-grid h1,
.intro-grid h2 {
  max-width: 13ch;
}

.intro-copy {
  align-self: end;
  max-width: 35rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.intro-copy p {
  margin: 0 0 1.25rem;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scope-list span {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  padding: .75rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.manifesto {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.manifesto::before {
  position: absolute;
  inset: 0;
  opacity: .75;
  background:
    radial-gradient(circle at 12% 20%, rgba(228, 254, 85, .24), transparent 27%),
    radial-gradient(circle at 88% 83%, rgba(28, 28, 28, .72), transparent 24%);
  content: "";
}

.manifesto-track {
  position: absolute;
  top: clamp(2rem, 6vw, 5rem);
  left: 0;
  display: flex;
  gap: 1.5rem;
  width: max-content;
  color: rgba(255, 255, 255, .1);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 650;
  line-height: .8;
  letter-spacing: -.06em;
  animation: ticker 32s linear infinite;
}

.manifesto-track i {
  color: var(--caramel);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(90svh - clamp(8rem, 16vw, 14rem));
  align-content: end;
  gap: 2rem;
}

.section-index {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.manifesto blockquote {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 8rem);
  font-family: var(--display);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.075em;
}

.manifesto-inner > p:last-child {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  gap: 1.5rem;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.section-heading h2 {
  max-width: 11ch;
}

.section-heading p {
  max-width: 28rem;
  margin: 0;
  align-self: end;
  font-size: 1.05rem;
}

.system-map {
  display: grid;
  gap: .75rem;
  margin-bottom: clamp(4rem, 9vw, 8rem);
}

.system-map article {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .25rem .75rem;
  min-height: 6rem;
  align-content: center;
  padding: 1rem;
  color: var(--milk);
  border-radius: .85rem;
  background: var(--ink);
}

.system-map article span {
  grid-row: 1 / 3;
  color: var(--caramel);
  font-size: .65rem;
}

.system-map article strong {
  font-size: 1.2rem;
  font-weight: 500;
}

.system-map article small {
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
}

.system-map > i {
  display: none;
}

.bento {
  display: grid;
  gap: 1rem;
}

.bento-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
}

.card-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.card-label {
  display: flex;
  gap: 1rem;
  margin: 0 0 clamp(2.5rem, 6vw, 5rem);
  color: rgba(23, 18, 15, .62);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.card-label span {
  color: var(--caramel);
}

.card-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  font-family: var(--display);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}

.card-copy > p:last-child {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: rgba(23, 18, 15, .67);
}

.content-card figure {
  position: relative;
  min-height: 28rem;
  margin: 0;
}

.content-card figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card figcaption {
  position: absolute;
  inset: auto 1rem 1rem;
  display: flex;
  justify-content: space-between;
  padding: .85rem 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(23, 18, 15, .46);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-card {
  color: var(--milk);
  background: var(--coffee);
}

.social-card .card-label,
.social-card .card-copy > p:last-child {
  color: rgba(255, 255, 255, .67);
}

.social-demo {
  padding: 0 1rem 1rem;
}

.channel-tabs {
  display: flex;
  gap: .35rem;
  padding-bottom: 1rem;
  overflow-x: auto;
}

.channel-tabs button {
  min-width: max-content;
  min-height: 2.75rem;
  padding: .6rem 1rem;
  color: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: transparent;
  font-size: .72rem;
}

.channel-tabs button[aria-selected="true"] {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.social-screen {
  overflow: hidden;
  color: var(--ink);
  border-radius: 1.25rem;
  background: var(--milk);
  box-shadow: 0 2rem 4rem rgba(20, 8, 2, .25);
}

.social-top,
.social-caption {
  padding: 1rem;
}

.social-top {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
}

.social-visual {
  position: relative;
  aspect-ratio: 1 / .78;
  overflow: hidden;
}

.social-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.social-screen[data-mode="tiktok"] .social-visual img {
  transform: scale(1.09);
  filter: contrast(1.1) saturate(.84);
}

.social-screen[data-mode="linkedin"] .social-visual img {
  transform: scale(1.02);
  filter: grayscale(.3);
}

.social-visual > span {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  padding: .45rem .65rem;
  color: #fff;
  border-radius: 999px;
  background: rgba(23, 18, 15, .66);
  font-size: .58rem;
  letter-spacing: .08em;
}

.social-caption > span {
  font-size: 1.1rem;
}

.social-caption p {
  margin: .8rem 0 0;
  color: rgba(23, 18, 15, .7);
  font-size: .78rem;
}

.owned-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-deep);
}

.browser-mock {
  margin: 1rem;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 15, .16);
  border-radius: 1.15rem;
  background: var(--milk);
  box-shadow: 0 1.8rem 4rem rgba(67, 42, 28, .13);
}

.browser-bar {
  display: flex;
  gap: .4rem;
  align-items: center;
  height: 2.7rem;
  padding: 0 .8rem;
  border-bottom: 1px solid var(--line);
}

.browser-bar i {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--caramel);
}

.browser-bar i:nth-child(2) { opacity: .55; }
.browser-bar i:nth-child(3) { opacity: .25; }

.browser-bar span {
  margin-left: auto;
  color: rgba(23, 18, 15, .5);
  font-size: .62rem;
}

.browser-page {
  min-height: 22rem;
  padding: 1.25rem;
  color: var(--milk);
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 117, 56, .36), transparent 28%),
    var(--ink-soft);
}

.browser-page nav {
  display: flex;
  justify-content: space-between;
  font-size: .55rem;
  letter-spacing: .1em;
}

.browser-page > p {
  margin: 5rem 0 .6rem;
  color: var(--caramel);
  font-size: .58rem;
  letter-spacing: .1em;
}

.browser-page h4 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.055em;
}

.search-line {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: .65rem;
  text-transform: uppercase;
}

.app-card {
  color: var(--ink);
  background: var(--lime);
}

.app-card .card-label,
.app-card .card-copy > p:last-child {
  color: rgba(22, 22, 22, .64);
}

.phone {
  width: min(78%, 21rem);
  min-height: 35rem;
  margin: 0 auto -5rem;
  padding: .85rem;
  color: var(--ink);
  border: .45rem solid var(--ink);
  border-radius: 2.4rem;
  background: var(--paper);
  box-shadow: 0 2rem 4rem rgba(48, 20, 5, .28);
  transform: rotate(3deg);
}

.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .2rem .4rem 1.4rem;
  font-size: .58rem;
}

.phone-head i {
  width: 4.5rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--ink);
}

.app-brand {
  display: grid;
  gap: .5rem;
  padding: 1rem .5rem 1.5rem;
}

.app-brand strong {
  font-size: 1.55rem;
}

.app-brand small {
  color: rgba(23, 18, 15, .55);
}

.app-pass {
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  padding: 1.2rem;
  color: var(--milk);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 255, 99, .18), transparent 24%),
    var(--ink);
}

.app-pass small {
  color: var(--acid);
  font-size: .58rem;
  letter-spacing: .1em;
}

.app-pass strong {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: .94;
}

.app-pass > span {
  margin-top: .75rem;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
}

.app-pass b {
  margin-top: auto;
  font-size: .7rem;
  font-weight: 400;
}

.app-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: .7rem;
}

.app-actions span {
  display: grid;
  min-height: 5.4rem;
  place-content: center;
  justify-items: center;
  gap: .5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-size: .62rem;
}

.app-actions i {
  font-size: 1.15rem;
  font-style: normal;
}

.grou-iphone-preview {
  min-height: 34rem;
  display: grid;
  place-items: end center;
  margin: 0;
  padding: 1rem 1rem 0;
  overflow: hidden;
}

.grou-iphone-device {
  position: relative;
  width: min(78%, 24rem);
  aspect-ratio: 644 / 1320;
  margin: 0 auto -4.5rem;
  overflow: hidden;
  filter: drop-shadow(0 1.3rem 1.8rem rgba(16, 19, 19, .2));
}

.grou-iphone-screen {
  position: absolute;
  top: 2.05%;
  left: 4.65%;
  width: 90.7%;
  height: 95.9%;
  border-radius: 17% / 8%;
  background:
    radial-gradient(circle at 50% 34%, rgba(228, 254, 85, .08), transparent 34%),
    #111;
}

.grou-iphone-frame {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.retention-card {
  background: var(--sweet-grey);
}

.journeys {
  margin: 0 clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-radius: 1.2rem;
  background: var(--milk);
}

.journey-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journey-brand img {
  width: 7.5rem;
  height: 2.2rem;
  object-fit: contain;
  object-position: left center;
}

.journey-brand span,
.sms-card span {
  color: rgba(23, 18, 15, .48);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journey-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 3rem .2rem 1rem;
}

.journey-line::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.journey-line i {
  position: relative;
  z-index: 1;
  width: .75rem;
  height: .75rem;
  border: .2rem solid var(--milk);
  border-radius: 50%;
  background: var(--coffee);
  box-shadow: 0 0 0 1px var(--coffee);
}

.journey-events {
  display: flex;
  justify-content: space-between;
  font-size: .58rem;
}

.sms-card {
  margin-top: 2.5rem;
  padding: 1rem;
  border-radius: .9rem;
  background: var(--paper);
}

.sms-card p {
  margin: 1rem 0;
  font-size: .82rem;
}

.sms-card small {
  color: rgba(23, 18, 15, .48);
  font-size: .58rem;
}

.commerce-card {
  background: var(--ink-soft);
}

.commerce-card .card-copy {
  color: var(--milk);
}

.commerce-card .card-label,
.commerce-card .card-copy > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.commerce-visual {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(255,255,255,.08) 50%, transparent 50.5%),
    #262626;
  background-size: 2rem 2rem;
}

.merch-shirt {
  position: absolute;
  top: 3rem;
  left: 50%;
  width: 15rem;
  height: 20rem;
  border-radius: 3.5rem 3.5rem 1rem 1rem;
  background: #ece4d6;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, .28);
  transform: translateX(-50%) rotate(-8deg);
}

.merch-shirt::before,
.merch-shirt::after {
  position: absolute;
  top: 1.5rem;
  width: 6rem;
  height: 7rem;
  background: #ece4d6;
  content: "";
}

.merch-shirt::before {
  left: -4.2rem;
  transform: rotate(35deg);
}

.merch-shirt::after {
  right: -4.2rem;
  transform: rotate(-35deg);
}

.merch-shirt span {
  position: absolute;
  z-index: 2;
  top: 8rem;
  left: 50%;
  color: var(--coffee);
  font-size: 2rem;
  font-weight: 650;
  transform: translateX(-50%);
}

.shop-card {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .45rem 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--milk);
}

.shop-card img {
  width: 6.5rem;
  height: 2rem;
  object-fit: contain;
  object-position: left;
}

.shop-card span {
  grid-column: 1;
  color: rgba(23, 18, 15, .52);
  font-size: .62rem;
}

.shop-card strong {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: .6rem .75rem;
  color: var(--milk);
  border-radius: 999px;
  background: var(--coffee);
  font-size: .62rem;
  font-weight: 400;
}

.brand-system,
.performance,
.monthly-strategy {
  padding: clamp(5rem, 11vw, 10rem) var(--gutter);
}

.brand-system {
  border-top: 1px solid var(--line);
}

.brand-heading,
.performance-head,
.strategy-head {
  display: grid;
  gap: 2rem;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.brand-heading h2,
.performance-head h2,
.strategy-head h2 {
  max-width: 12ch;
}

.brand-heading > div,
.performance-head > p,
.strategy-head > p {
  max-width: 34rem;
  margin: 0;
  align-self: end;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.brand-heading > div p {
  margin: 0 0 1rem;
}

.brand-gallery {
  display: grid;
  gap: 1rem;
}

.monthly-strategy figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  color: rgba(22, 22, 22, .56);
  border-top: 1px solid var(--line);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-orbit {
  grid-column: 1 / -1;
  min-width: 0;
  min-height: clamp(30rem, 125vw, 38rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 5.5rem;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, .96) 0 7%, rgba(255, 255, 255, 0) 42%),
    var(--sweet-grey);
}

.brand-orbit-head,
.brand-orbit-foot {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .9rem 1rem;
  color: rgba(22, 22, 22, .56);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-orbit-head {
  border-bottom: 1px solid var(--line);
}

.brand-orbit-foot {
  border-top: 1px solid var(--line);
}

.brand-orbit-head span:last-child,
.brand-orbit-foot strong {
  text-align: right;
}

.brand-orbit-foot strong {
  color: var(--ink);
  font-weight: 500;
}

.brand-orbit-stage {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  perspective: 75rem;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.brand-orbit-stage::before,
.brand-orbit-stage::after {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(22, 22, 22, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.brand-orbit-stage::before {
  top: 18%;
  width: min(125%, 42rem);
  aspect-ratio: 2.4 / 1;
}

.brand-orbit-stage::after {
  right: 0;
  bottom: 12%;
  width: 2.5rem;
  aspect-ratio: 1;
  border-color: rgba(22, 22, 22, .18);
  background: rgba(255, 255, 255, .48);
}

.brand-orbit-stage.is-dragging {
  cursor: grabbing;
}

.brand-orbit-item {
  --orbit-x: 0px;
  --orbit-y: 0px;
  --orbit-scale: 1;
  --orbit-rotate: 0deg;
  --orbit-opacity: 1;
  --orbit-blur: 0px;
  position: absolute;
  z-index: var(--orbit-z, 1);
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  opacity: var(--orbit-opacity);
  filter: blur(var(--orbit-blur));
  transform: translate(-50%, -50%) translate3d(var(--orbit-x), var(--orbit-y), 0) scale(var(--orbit-scale)) rotate(var(--orbit-rotate));
  transform-origin: center;
  cursor: grab;
}

.brand-orbit-item:focus-visible {
  outline: .18rem solid var(--golden);
  outline-offset: .28rem;
}

.brand-orbit-item:active {
  scale: .96;
}

.palette-orbit-item {
  width: clamp(8.8rem, 42vw, 11.5rem);
  min-height: 16rem;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 1.25rem;
  background: var(--milk);
  box-shadow: 0 .3rem .8rem rgba(22, 22, 22, .06), 0 1.6rem 3rem rgba(22, 22, 22, .12);
}

.palette-orbit-swatch {
  display: block;
  min-height: 10rem;
  color: var(--tone-ink);
  background: var(--tone);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
}

.palette-orbit-swatch::before {
  display: block;
  width: 3.25rem;
  aspect-ratio: 1;
  margin: 1rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .48;
  background: radial-gradient(circle, currentColor 0 12%, transparent 13% 35%, currentColor 36% 38%, transparent 39%);
  content: "";
}

.palette-orbit-copy {
  display: grid;
  gap: .08rem;
  padding: .85rem .9rem 1rem;
  text-align: left;
}

.palette-orbit-copy small {
  color: rgba(22, 22, 22, .46);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.palette-orbit-copy strong {
  font-size: .9rem;
  font-weight: 500;
}

.palette-orbit-copy em {
  color: rgba(22, 22, 22, .56);
  font-size: .68rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.icon-promo {
  grid-column: 1 / -1;
  min-width: 0;
  overflow: hidden;
  color: #f0e5bd;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  scroll-margin-top: 5.5rem;
  background: var(--espresso);
}

.icon-promo-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  color: rgba(255, 255, 255, .52);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.icon-promo-head span:last-child {
  text-align: right;
}

.icon-promo-viewport {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.icon-promo-track,
.icon-promo-sequence {
  display: flex;
  width: max-content;
}

.icon-promo-track {
  animation: icon-promo-scroll 32s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.icon-promo.is-active .icon-promo-track {
  animation-play-state: running;
}

.icon-promo-sequence {
  flex: none;
}

.icon-promo-item {
  width: clamp(7.25rem, 14vw, 10rem);
  min-height: 7rem;
  display: grid;
  flex: none;
  gap: .45rem;
  place-items: center;
  padding: .8rem .65rem .65rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.icon-promo-item svg {
  width: clamp(2.5rem, 5vw, 3.35rem);
  aspect-ratio: 1;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-promo-item svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-promo-item strong {
  color: rgba(240, 229, 189, .72);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.menu-copy h3,
.strategy-brief h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}

@keyframes icon-promo-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.brand-spec {
  display: grid;
  gap: 0;
  margin-top: 1rem;
  overflow: visible;
  background: transparent;
}

.type-spec,
.swatches {
  background: var(--foam);
}

.type-spec {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  font-family: var(--display);
}

.type-spec small {
  margin-bottom: auto;
  color: rgba(22, 22, 22, .48);
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.type-spec strong,
.type-spec em,
.type-spec span {
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
}

.type-spec--sans,
.type-spec--sans em {
  font-family: var(--sans);
}

.type-spec--sans span {
  font-weight: 300;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem;
}

.swatches > span {
  min-width: 0;
  padding: .45rem;
}

.swatches i {
  position: relative;
  display: block;
  aspect-ratio: 1;
  margin-bottom: .7rem;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 1rem 2.8rem rgba(22, 22, 22, .06);
  transform: scale(1);
  transition: transform .38s cubic-bezier(.2, 0, 0, 1), box-shadow .38s cubic-bezier(.2, 0, 0, 1);
}

.swatches small {
  color: rgba(22, 22, 22, .62);
  font-size: .58rem;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .swatches > span:hover i {
    box-shadow: 0 1.6rem 4rem rgba(22, 22, 22, .14);
    transform: scale(1.1);
  }
}

@media (hover: none) {
  .swatches > span:active i {
    transform: scale(.96);
  }
}

.brochure-scroll {
  position: relative;
  height: 250svh;
  min-height: 90rem;
  scroll-margin-top: 4.5rem;
}

.brochure-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 5.5rem var(--gutter) 2rem;
  overflow: clip;
}

.brochure-heading {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 1rem;
}

.brochure-heading h2 {
  max-width: 13ch;
}

.brochure-heading > div {
  max-width: 34rem;
  align-self: end;
}

.brochure-heading p {
  margin: 0;
  color: rgba(22, 22, 22, .64);
  text-wrap: pretty;
}

.brochure-switch {
  display: inline-flex;
  gap: .3rem;
  margin-top: 1rem;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: #fff;
  transition: opacity .28s ease;
}

.brochure-switch button {
  min-width: 5.25rem;
  min-height: 2.75rem;
  padding: 0 .9rem;
  border-radius: .55rem;
  color: rgba(22, 22, 22, .58);
  background: transparent;
  font-size: .75rem;
  font-weight: 500;
  transition: color .2s var(--ease), background .25s var(--ease), transform .18s var(--ease);
}

.brochure-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--lime);
}

.brochure-switch button:active {
  transform: scale(.96);
}

.brochure-switch button:disabled {
  cursor: default;
}

.brochure-scroll:not(.is-open) .brochure-switch {
  opacity: .38;
  pointer-events: none;
}

.brochure-viewport {
  min-height: 0;
  flex: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  perspective: 90rem;
}

.brochure-object {
  --brochure-left: 180deg;
  --brochure-right: -180deg;
  --brochure-left-depth: .12rem;
  --brochure-right-depth: .32rem;
  --brochure-scale: 1.68;
  --brochure-tilt-x: 4deg;
  --brochure-tilt-z: -1deg;
  position: relative;
  width: min(90%, 64.8rem);
  aspect-ratio: 1.414 / 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: rotateX(var(--brochure-tilt-x)) rotateZ(var(--brochure-tilt-z)) scale(var(--brochure-scale));
  transform-style: preserve-3d;
  will-change: transform;
}

.brochure-panel {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: #fff;
  transform-style: preserve-3d;
  will-change: transform;
}

.brochure-panel--left {
  z-index: 3;
  border-radius: .45rem 0 0 .45rem;
  transform: translateZ(var(--brochure-left-depth)) rotateY(var(--brochure-left));
  transform-origin: right center;
}

.brochure-panel--center {
  z-index: 1;
  transform: translateZ(.08rem);
}

.brochure-panel--right {
  z-index: 4;
  border-radius: 0 .45rem .45rem 0;
  transform: translateZ(var(--brochure-right-depth)) rotateY(var(--brochure-right));
  transform-origin: left center;
}

.brochure-face,
.brochure-panel::after {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-size: 300% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .1),
    0 1.2rem 2rem rgba(22, 22, 22, .13);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.brochure-face {
  transform: translateZ(.04rem);
  transition: opacity .42s var(--ease);
}

.brochure-panel::after {
  background-image: url("/images/work/grou/local-menu-2.jpg");
  content: "";
  transform: rotateY(180deg) translateZ(.04rem);
}

.brochure-face--inside {
  background-image: url("/images/work/grou/local-menu-1.jpg");
}

.brochure-face--reverse {
  opacity: 0;
  background-image: url("/images/work/grou/local-menu-2.jpg");
}

.brochure-panel--left .brochure-face,
.brochure-panel--left::after { background-position: 0 50%; }
.brochure-panel--center .brochure-face,
.brochure-panel--center::after { background-position: 50% 50%; }
.brochure-panel--right .brochure-face,
.brochure-panel--right::after { background-position: 100% 50%; }

.brochure-object[data-side="reverse"] .brochure-face--inside { opacity: 0; }
.brochure-object[data-side="reverse"] .brochure-face--reverse { opacity: 1; }

.brochure-object[data-fold-state="open"] :is(.brochure-panel--left, .brochure-panel--right) {
  z-index: 2;
}

.brochure-hint {
  width: min(100%, 22rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .7rem;
  align-items: center;
  margin: 1rem 0 0;
  color: rgba(22, 22, 22, .48);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brochure-hint i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(22, 22, 22, .15);
}

.brochure-hint i::after {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleX(var(--brochure-progress, 0));
  transform-origin: left;
}

.menu-gallery {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) var(--gutter);
  overflow: hidden;
  scroll-margin-top: 4.5rem;
}

.menu-gallery-head {
  display: grid;
  gap: 2rem;
  padding-bottom: clamp(2.75rem, 6vw, 5rem);
}

.menu-gallery-head > div {
  min-width: 0;
}

.menu-gallery-head h2 {
  max-width: 12ch;
  margin: .8rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5.7vw, 5.5rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.035em;
}

.menu-gallery-head > p {
  max-width: 32rem;
  margin: 0;
  align-self: end;
  color: rgba(22, 22, 22, .64);
  font-size: 1.05rem;
  text-wrap: pretty;
}

.menu-drift-viewport {
  position: relative;
  min-height: clamp(34rem, 68vw, 54rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  isolation: isolate;
  perspective: 90rem;
}

.menu-drift-viewport::before,
.menu-drift-viewport::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 15%;
  content: "";
  pointer-events: none;
}

.menu-drift-viewport::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper-deep), transparent);
}

.menu-drift-viewport::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper-deep), transparent);
}

.menu-drift-wall {
  --menu-drift-gap: clamp(.65rem, 1vw, 1rem);
  --menu-drift-half-gap: clamp(.325rem, .5vw, .5rem);
  --menu-drift-pitch: 0deg;
  --menu-drift-yaw: 0deg;
  position: absolute;
  top: -23%;
  left: -7%;
  width: 114%;
  height: 148%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--menu-drift-gap);
  opacity: 0;
  transform: rotateX(calc(3deg + var(--menu-drift-pitch))) rotateY(calc(-2deg + var(--menu-drift-yaw))) rotateZ(-1.35deg) scale(1.035);
  transform-style: preserve-3d;
  transition: opacity .7s ease, transform .65s var(--ease);
}

.menu-drift-wall.is-ready {
  opacity: 1;
}

.menu-drift-column {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.menu-drift-track,
.menu-drift-sequence {
  display: flex;
  flex-direction: column;
  gap: var(--menu-drift-gap);
}

.menu-drift-track {
  --menu-drift-duration: 43s;
  animation: menu-drift-up var(--menu-drift-duration) linear infinite;
  animation-delay: -17s;
  animation-play-state: paused;
  will-change: transform;
}

.menu-drift-viewport.is-active .menu-drift-track {
  animation-play-state: running;
}

.menu-drift-column:nth-child(2) .menu-drift-track {
  --menu-drift-duration: 49s;
  animation-delay: -31s;
  animation-direction: reverse;
}

.menu-drift-column:nth-child(3) .menu-drift-track {
  --menu-drift-duration: 39s;
  animation-delay: -8s;
}

.menu-drift-sequence {
  flex: none;
}

.menu-drift-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  flex: none;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 22, 22, .16);
  border-radius: clamp(.75rem, 1.2vw, 1.1rem);
  background: #d7d7d0;
  box-shadow: 0 1rem 2.5rem rgba(22, 22, 22, .12);
  transform: translateZ(0);
}

.menu-drift-tile:nth-child(3n) {
  aspect-ratio: 9 / 16;
}

.menu-drift-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.menu-drift-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  min-height: 30%;
  padding: clamp(.75rem, 1.4vw, 1.15rem);
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent);
  font-size: clamp(.66rem, .85vw, .78rem);
  letter-spacing: .04em;
}

.menu-drift-tile figcaption small {
  opacity: .68;
  font-size: .6rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@keyframes menu-drift-up {
  to {
    transform: translate3d(0, calc(-50% - var(--menu-drift-half-gap)), 0);
  }
}

@media (min-width: 43.75rem) {
  .menu-gallery-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(17rem, .6fr);
  }
}

@media (max-width: 43.6875rem) {
  .menu-drift-viewport {
    min-height: 38rem;
  }

  .menu-drift-wall {
    top: -18%;
    left: -20%;
    width: 140%;
    height: 140%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-drift-column:nth-child(3) {
    display: none;
  }

  .menu-drift-tile figcaption {
    align-items: start;
    flex-direction: column;
    gap: .15rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .menu-drift-tile:hover img {
    transform: scale(1.035);
  }
}

.performance {
  overflow: hidden;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric {
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--foam);
}

.metric--lead {
  grid-column: 1 / -1;
  color: var(--foam);
  background: var(--espresso);
}

.metric span,
.metric small {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric span {
  color: rgba(22, 22, 22, .5);
}

.metric--lead span,
.metric--lead small {
  color: rgba(255, 255, 255, .58);
}

.metric strong {
  margin: auto 0 .4rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.5vw, 5.4rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.055em;
}

.metric small {
  color: rgba(22, 22, 22, .48);
  letter-spacing: .03em;
  text-transform: none;
}

.metric--lead small {
  color: rgba(255, 255, 255, .58);
}

.data-note {
  max-width: 56rem;
  margin: 1rem 0 clamp(4rem, 8vw, 7rem);
  color: rgba(22, 22, 22, .48);
  font-size: .68rem;
}

.signal-grid {
  display: grid;
  gap: 1rem;
}

.local-proof,
.audience-proof {
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border-radius: var(--radius);
}

.local-proof {
  background: var(--sweet-grey);
}

.audience-proof {
  color: var(--foam);
  background: var(--roast);
}

.signal-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.audience-proof .signal-title {
  border-color: rgba(255, 255, 255, .18);
}

.signal-title p,
.signal-title span {
  margin: 0;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-title span {
  color: rgba(22, 22, 22, .48);
  text-align: right;
}

.audience-proof .signal-title span {
  color: rgba(255, 255, 255, .48);
}

.map-proof {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
}

.rank-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(.25rem, 1vw, .55rem);
  width: min(100%, 25rem);
  aspect-ratio: 1;
  padding: clamp(.6rem, 2vw, 1.2rem);
  border-radius: 50%;
  background:
    linear-gradient(rgba(22,22,22,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,22,22,.08) 1px, transparent 1px),
    rgba(255, 255, 255, .42);
  background-size: 14.28% 14.28%;
}

.rank-grid::before {
  position: absolute;
  z-index: -1;
  inset: 7%;
  border: 1px solid rgba(228, 254, 85, .5);
  border-radius: 50%;
  opacity: 0;
  content: "";
  pointer-events: none;
  transform: scale(.5);
}

.rank-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity .35s ease;
}

.rank-grid span > i {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  color: var(--foam);
  border: .12rem solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: #26764a;
  box-shadow: 0 .25rem .65rem rgba(22, 22, 22, .16);
  font-size: clamp(.5rem, 1.5vw, .72rem);
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  transform: translate3d(var(--rank-hover-x, 0), var(--rank-hover-y, 0), 0) scale(var(--rank-hover-scale, 1));
  transition: transform .22s var(--ease), box-shadow .22s ease, filter .22s ease;
}

.rank-grid.is-active span {
  opacity: 1;
  transition-delay: calc(var(--cell) * 22ms);
  animation: rank-orbit var(--rank-duration, 6.5s) ease-in-out var(--rank-delay, 0s) infinite both;
}

.rank-grid.is-active::before {
  animation: rank-signal 5.8s var(--ease) infinite;
}

.rank-grid span.is-near > i {
  filter: saturate(1.12) brightness(1.04);
  box-shadow: 0 .45rem 1.1rem rgba(22, 22, 22, .2), 0 0 0 .22rem rgba(228, 254, 85, .16);
}

.rank-grid span[data-rank="2"] > i { background: #5d9257; }
.rank-grid span[data-rank="3"] > i { background: #a7a744; }
.rank-grid span[data-rank="4"] > i {
  color: var(--ink);
  background: var(--golden);
}

@keyframes rank-orbit {
  0%, 100% { transform: translate3d(var(--rank-x-a, 0), var(--rank-y-a, 0), 0); }
  33% { transform: translate3d(var(--rank-x-b, 0), var(--rank-y-b, 0), 0); }
  66% { transform: translate3d(var(--rank-x-c, 0), var(--rank-y-c, 0), 0); }
}

@keyframes rank-signal {
  0% { opacity: 0; transform: scale(.5); }
  24% { opacity: .55; }
  58%, 100% { opacity: 0; transform: scale(1.18); }
}

.rank-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-self: end;
}

.rank-summary span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.rank-summary small {
  min-height: 2.3rem;
  color: rgba(22, 22, 22, .48);
  font-size: .55rem;
  text-transform: uppercase;
}

.rank-summary strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 500;
}

.rank-summary p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: normal;
}

.audience-total {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .25rem 1rem;
  align-items: end;
  margin-top: 2.25rem;
}

.audience-total strong {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.06em;
}

.audience-total span {
  font-size: .75rem;
  text-transform: uppercase;
}

.audience-total small {
  color: var(--golden);
  font-size: .68rem;
}

.audience-total--sms {
  margin-top: 1.75rem;
}

.audience-bar {
  height: .35rem;
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
}

.audience-bar i {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--golden);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.2,.7,.2,1) .35s;
}

.audience-proof.is-visible .audience-bar i {
  transform: scaleX(1);
}

.campaign-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.campaign-proof > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .52);
  font-size: .65rem;
  text-transform: uppercase;
}

.campaign-proof strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.campaign-proof small {
  color: rgba(255, 255, 255, .5);
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 300;
  text-transform: uppercase;
}

.grou-console {
  margin-top: clamp(1rem, 4vw, 3rem);
  padding: .45rem;
  overflow: hidden;
  border-radius: 1.5rem;
  color: var(--ink);
  background: #e5e6e2;
  box-shadow: 0 0 0 1px #d5d7d1, 0 1rem 3rem rgba(22, 22, 22, .06);
}

.grou-console-chrome {
  height: 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 .85rem;
  color: #62665f;
  font-size: .65rem;
  letter-spacing: .06em;
}

.grou-console-chrome > span:first-child {
  display: flex;
  gap: .35rem;
}

.grou-console-chrome i {
  width: .56rem;
  height: .56rem;
  border-radius: 50%;
  background: #a5a8a0;
}

.grou-console-chrome i:nth-child(2) { background: #b8bbb3; }
.grou-console-chrome i:nth-child(3) { background: #c9ccc4; }

.grou-console-chrome strong {
  overflow: hidden;
  max-width: 45vw;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grou-console-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .45rem;
}

.grou-console-rail {
  position: relative;
  z-index: 5;
  height: 4.5rem;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: .35rem;
  padding: .45rem;
  overflow: hidden;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(22, 22, 22, .07), 0 .25rem 1rem rgba(22, 22, 22, .06);
}

.grou-console-brand {
  height: 3.55rem;
  display: flex;
  flex: none;
  align-items: center;
  gap: .75rem;
}

.grou-console-brand > span:last-child,
.grou-console-tabs button > i {
  display: none;
}

.grou-console-mark {
  width: 3.55rem;
  height: 3.55rem;
  display: grid;
  flex: none;
  place-items: center;
  padding: .55rem;
  overflow: hidden;
  border-radius: .65rem;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(22, 22, 22, .07), 0 .25rem .9rem rgba(22, 22, 22, .08);
}

.grou-console-mark img {
  width: 100%;
  filter: brightness(0);
}

.grou-console-tabs {
  min-width: 0;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: .2rem;
}

.grou-console-tabs button {
  width: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: .7rem;
  color: #6c6f6d;
  background: transparent;
  transition: color .2s var(--ease), background .22s var(--ease), transform .18s var(--ease);
}

.grou-console-tabs button > span {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
}

.grou-console-tabs svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.grou-console-tabs button:hover {
  color: var(--ink);
  background: rgba(22, 22, 22, .055);
}

.grou-console-tabs button:active {
  transform: scale(.96);
}

body.grou-framed .grou-console-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: #dfe2da;
}

.grou-console-stage {
  position: relative;
  min-width: 0;
  min-height: 65rem;
  overflow: hidden;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(22, 22, 22, .06);
}

.grou-console-topbar {
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(22, 22, 22, .08);
  background: rgba(242, 242, 239, .88);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.grou-console-topbar > span:first-child {
  min-width: 0;
  display: grid;
  gap: .12rem;
}

.grou-console-topbar strong,
.grou-console-topbar small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grou-console-topbar strong {
  font-size: .82rem;
  font-weight: 650;
}

.grou-console-topbar small {
  color: #737673;
  font-size: .67rem;
}

.grou-console-live {
  min-height: 2rem;
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: .45rem;
  padding: 0 .7rem;
  border-radius: 999px;
  color: #4e514f;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(22, 22, 22, .07), 0 .25rem .8rem rgba(22, 22, 22, .04);
  font-size: .67rem;
  font-weight: 600;
  white-space: nowrap;
}

.grou-console-live i,
.grou-console-side li > i {
  width: .42rem;
  height: .42rem;
  flex: none;
  border-radius: 50%;
  background: #46b96f;
  box-shadow: 0 0 0 .22rem rgba(70, 185, 111, .12);
}

.grou-console-panel,
.grou-console-panel.is-active {
  position: absolute;
  inset: 4.5rem 0 0;
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: 1rem;
  overflow-y: auto;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, .6rem, 0);
  scrollbar-width: none;
  transition: opacity .16s ease, transform .2s ease, visibility 0s linear .2s;
}

.grou-console-panel::-webkit-scrollbar { display: none; }

.grou-console-panel.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition: opacity .3s ease .04s, transform .42s var(--ease), visibility 0s linear 0s;
}

.grou-console-panel-head {
  display: grid;
  gap: .8rem;
}

.grou-console-panel-head > div > p,
.grou-trend-card figcaption small,
.grou-console-side section > span,
.grou-map-card > div:first-child span,
.grou-keywords > span,
.grou-signups > div:first-child span,
.grou-reach > span,
.grou-campaign > div:first-child span,
.grou-segments > span {
  margin: 0 0 .4rem;
  color: #6b6e6b;
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.grou-console-panel-head h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.grou-console-panel-head > p {
  max-width: 43ch;
  margin: 0;
  color: #626562;
  font-size: .9rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.grou-console-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.grou-console-kpis > div,
.grou-console-side section,
.grou-trend-card,
.grou-map-card,
.grou-keywords,
.grou-signups,
.grou-reach,
.grou-campaign,
.grou-segments {
  min-width: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(22, 22, 22, .06), 0 1px 2px -1px rgba(22, 22, 22, .06), 0 2px 4px rgba(22, 22, 22, .035);
}

.grou-console-kpis > div {
  min-height: 6.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .85rem;
  border-radius: .8rem;
}

.grou-console-kpis span,
.grou-console-kpis small {
  overflow: hidden;
  color: #797c79;
  font-size: .66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grou-console-kpis strong {
  overflow: hidden;
  margin: .3rem 0 .1rem;
  font-size: clamp(1.15rem, 4.8vw, 1.75rem);
  font-variant-numeric: tabular-nums;
  font-weight: 560;
  letter-spacing: -.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grou-console-workspace {
  display: grid;
  min-width: 0;
  gap: .65rem;
}

.grou-trend-card,
.grou-map-card,
.grou-signups,
.grou-campaign {
  margin: 0;
  padding: 1rem;
  border-radius: .9rem;
}

.grou-trend-card figcaption,
.grou-map-card > div:first-child,
.grou-signups > div:first-child,
.grou-campaign > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.grou-trend-card figcaption span {
  display: grid;
}

.grou-trend-card figcaption strong {
  font-size: .88rem;
  font-weight: 620;
}

.grou-trend-card figcaption em,
.grou-map-card > div:first-child small,
.grou-signups > div:first-child small,
.grou-campaign > div:first-child small {
  color: #777a77;
  font-size: .65rem;
  font-style: normal;
}

.grou-trend-card svg {
  width: 100%;
  margin-top: 1rem;
  overflow: visible;
}

.trend-grid {
  fill: none;
  stroke: #e5e5e0;
  stroke-width: 1;
}

.trend-area { fill: url(#grouTrendFill); }

.trend-line {
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-width: 5;
  stroke-dasharray: 1050;
  stroke-dashoffset: 1050;
  filter: drop-shadow(0 .25rem .35rem rgba(107, 126, 0, .18));
}

.grou-console-panel.is-active .trend-line {
  animation: draw-grou-trend 1.4s var(--ease) forwards .18s;
}

@keyframes draw-grou-trend { to { stroke-dashoffset: 0; } }

.grou-trend-card > div:last-child {
  display: flex;
  justify-content: space-between;
  color: #8a8d8a;
  font-size: .58rem;
}

.grou-console-side {
  display: grid;
  gap: .65rem;
}

.grou-console-side section,
.grou-keywords,
.grou-reach,
.grou-segments {
  padding: 1rem;
  border-radius: .9rem;
}

.grou-console-side section:first-child strong {
  display: block;
  margin: .55rem 0 .05rem;
  font-size: 1.7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 560;
  letter-spacing: -.045em;
}

.grou-console-side section:first-child small {
  color: #777a77;
  font-size: .65rem;
}

.grou-console-side ul,
.grou-keywords ul {
  display: grid;
  gap: .7rem;
  margin: .8rem 0 0;
  padding: 0;
  list-style: none;
}

.grou-console-side li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .55rem;
  align-items: center;
}

.grou-console-side li b,
.grou-keywords b {
  overflow: hidden;
  font-size: .7rem;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grou-console-side li small {
  color: #777a77;
  font-size: .62rem;
}

.grou-console-workspace--map {
  align-items: stretch;
}

.grou-map-card {
  display: grid;
  justify-items: center;
}

.grou-map-card > div:first-child {
  width: 100%;
}

.grou-map-card .rank-grid {
  width: min(100%, 20rem);
  margin-top: 1rem;
}

.grou-keywords li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(22, 22, 22, .08);
}

.grou-keywords strong {
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.grou-funnel,
.grou-touchpoints {
  min-width: 0;
  padding: 1rem;
  border-radius: .9rem;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(22, 22, 22, .06), 0 1px 2px -1px rgba(22, 22, 22, .06), 0 2px 4px rgba(22, 22, 22, .035);
}

.grou-funnel > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.grou-funnel > div span,
.grou-touchpoints > span {
  color: #6b6e6b;
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.grou-funnel > div small {
  color: #777a77;
  font-size: .65rem;
}

.grou-funnel ol {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(22, 22, 22, .09);
  list-style: none;
}

.grou-funnel li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .15rem .7rem;
  min-height: 5.4rem;
  align-content: center;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(22, 22, 22, .09);
}

.grou-funnel li > span {
  grid-row: 1 / 3;
  color: #777a77;
  font-size: .62rem;
}

.grou-funnel li strong {
  font-size: .86rem;
  font-weight: 620;
}

.grou-funnel li small {
  color: #777a77;
  font-size: .65rem;
}

.grou-touchpoints > div {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: 1rem;
}

.grou-touchpoints i {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 .7rem;
  border-radius: .5rem;
  background: #ecece7;
  font-size: .66rem;
  font-style: normal;
}

.grou-touchpoints p {
  margin: 1.5rem 0 0;
  color: #777a77;
  font-size: .72rem;
  line-height: 1.5;
}

.signup-bars {
  height: 14rem;
  display: flex;
  gap: clamp(.18rem, 1vw, .45rem);
  align-items: stretch;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 22, 22, .08);
}

.signup-bars > span {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  flex: 1;
  gap: .45rem;
  align-items: end;
}

.signup-bars i {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: .3rem .3rem .08rem .08rem;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .8s var(--ease);
}

.grou-console-panel.is-active .signup-bars i {
  transform: scaleY(var(--bar-scale, 1));
}

.signup-bars small {
  overflow: hidden;
  color: #808380;
  font-size: .5rem;
  text-align: center;
}

.grou-reach > div {
  margin-top: 1.15rem;
}

.grou-reach p {
  margin: 0;
}

.grou-reach > div p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .72rem;
}

.grou-reach b { font-weight: 620; }
.grou-reach small { color: #777a77; }

.grou-reach > div > i {
  position: relative;
  height: .35rem;
  display: block;
  margin-top: .55rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e5df;
}

.grou-reach > div > i::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease) .12s;
}

.grou-console-panel.is-active .grou-reach > div > i::after {
  transform: scaleX(var(--meter-scale, 1));
}

.grou-reach > p {
  margin-top: 1.5rem;
  color: #858885;
  font-size: .65rem;
  line-height: 1.45;
}

.grou-campaign h4 {
  max-width: 18ch;
  margin: clamp(2.4rem, 6vw, 5rem) 0 1.5rem;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}

.grou-campaign > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}

.grou-campaign > div:last-child span {
  min-width: 0;
  display: grid;
  padding-top: .75rem;
  border-top: 1px solid rgba(22, 22, 22, .1);
}

.grou-campaign > div:last-child strong {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-variant-numeric: tabular-nums;
  font-weight: 560;
  letter-spacing: -.04em;
}

.grou-campaign > div:last-child small {
  color: #7d807d;
  font-size: .58rem;
}

.grou-segments > div {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: 1rem;
}

.grou-segments > div i {
  min-height: 1.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0 .6rem;
  border-radius: .45rem;
  color: #555855;
  background: #edede9;
  font-size: .66rem;
  font-style: normal;
  font-weight: 560;
}

.grou-segments > p {
  margin: 1.3rem 0;
  color: #727572;
  font-size: .75rem;
}

.grou-library-count {
  display: grid;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 22, 22, .1);
}

.grou-library-count strong {
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  font-weight: 560;
}

.grou-library-count small {
  color: #777a77;
  font-size: .65rem;
}

.surface-links {
  display: grid;
  margin-top: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.surface-links > div,
.surface-links > a {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.surface-links > div p,
.surface-links > div span {
  margin: 0;
}

.surface-links > div p {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.surface-links > div span {
  display: block;
  max-width: 27rem;
  margin-top: .8rem;
  color: rgba(22, 22, 22, .56);
  font-size: .8rem;
}

.surface-links > a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 1rem;
  min-height: 5.5rem;
  align-content: center;
  transition: color .25s ease, padding .25s ease, background .25s ease;
}

.surface-links small {
  grid-column: 1;
  color: rgba(22, 22, 22, .5);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.surface-links strong {
  grid-column: 1;
  overflow: hidden;
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 500;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

.surface-links i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.4rem;
  font-style: normal;
}

.monthly-strategy {
  background: var(--espresso);
}

.strategy-layout {
  display: grid;
  gap: 1rem;
}

.monthly-strategy figure,
.strategy-brief {
  min-width: 0;
  min-height: 30rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
}

.monthly-strategy figure {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
}

.monthly-strategy figure img {
  width: 100%;
  flex: 1;
  object-fit: cover;
}

.strategy-brief {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 85% 12%, rgba(228, 254, 85, .2), transparent 24%),
    var(--roast);
}

.strategy-brief > p:first-child {
  margin: 0;
  color: var(--golden);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.brief-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(255, 255, 255, .08);
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 13rem);
  line-height: .75;
}

.strategy-brief h3 {
  position: relative;
  margin-top: auto;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.strategy-brief > p:nth-of-type(2) {
  position: relative;
  max-width: 31rem;
  margin: 1.25rem 0 1.75rem;
  color: rgba(255, 255, 255, .62);
}

.strategy-brief > div {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.strategy-brief > div span {
  padding: .5rem .7rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: .62rem;
}

.strategy-loop {
  display: grid;
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.strategy-loop li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .25rem .75rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.strategy-loop li > span {
  grid-row: 1 / 3;
  color: var(--golden);
  font-size: .6rem;
}

.strategy-loop strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.strategy-loop small {
  color: rgba(255, 255, 255, .46);
}

.field-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--coffee);
}

.field-section > img,
.field-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.field-section > img {
  object-fit: cover;
  object-position: center 42%;
}

.field-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .32) 35%, rgba(0, 0, 0, .76) 65%, #140d09 100%);
}

.field-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-content: end;
  gap: 2rem;
  padding: 6rem var(--gutter) clamp(3rem, 7vw, 6rem);
}

.field-copy > p {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field-copy h2 {
  max-width: 12ch;
}

.field-copy > div {
  max-width: 31rem;
}

.field-copy > div p {
  margin: 0 0 1rem;
}

.operations {
  padding: clamp(5rem, 11vw, 10rem) var(--gutter);
}

.light-eyebrow {
  border-color: rgba(255, 255, 255, .18);
}

.operations-head {
  display: grid;
  gap: 1.5rem;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.operations-head p {
  max-width: 29rem;
  margin: 0;
  align-self: end;
  color: rgba(255, 255, 255, .6);
}

.operations-loop {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.operations-loop li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: .35rem 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.operations-loop span {
  grid-row: 1 / 3;
  color: var(--caramel);
  font-size: .65rem;
}

.operations-loop strong {
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 500;
}

.operations-loop small {
  color: rgba(255, 255, 255, .5);
}

.closing {
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}

.closing h2 {
  max-width: 12ch;
}

.closing-link {
  display: flex;
  width: 100%;
  min-height: 5rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.closing-link i {
  font-size: 1.7rem;
  font-style: normal;
  transition: transform .25s ease;
}

.closing-link:hover i {
  transform: translate(.25rem, -.25rem);
}

.footer {
  --ring: var(--lime);
  padding: clamp(3rem, 7vw, 5.75rem) var(--gutter) clamp(1.625rem, 3vw, 2.5rem);
  color: rgba(255, 255, 255, .55);
  background: var(--ink);
  font-size: .8125rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.75rem, 5vw, 4.5rem);
  margin: 0;
}

.footer-brand {
  color: rgba(255, 255, 255, .9);
  width: max-content;
}

.footer-brand .footer-brand-image {
  width: 7.125rem;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.875rem, 2vw, 1.875rem);
}

.footer-nav a,
.footer-social a {
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4375rem;
  text-align: right;
}

.footer-contact > a {
  width: max-content;
  color: #fff;
  font-size: clamp(.9375rem, 1.3vw, 1.1875rem);
  transition: color .25s var(--ease);
}

.footer-social {
  gap: 1rem;
  margin-top: .5rem;
}

.footer :is(.footer-nav, .footer-contact, .footer-social) a:hover,
.footer :is(.footer-nav, .footer-contact, .footer-social) a:focus-visible {
  color: var(--lime);
}

.footer-cta-slot:empty {
  display: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin: clamp(2.125rem, 5vw, 3.75rem) 0 0;
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  color: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal="slow"] {
  transform: translateY(2.5rem);
  transition-duration: 1s;
}

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

@media (min-width: 43.75rem) {
  .hero-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 25rem);
    align-items: end;
  }

  .hero-scroll {
    bottom: 2.1rem;
  }

  .hero-scroll span {
    display: inline;
  }

  .intro-grid,
  .brand-heading,
  .brochure-heading,
  .performance-head,
  .section-heading,
  .strategy-head,
  .operations-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(17rem, .6fr);
  }

  .scope-list {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .brand-orbit {
    grid-column: 1 / -1;
  }

  .brand-orbit {
    min-height: 34rem;
  }

  .brand-orbit-stage {
    min-height: 28rem;
  }

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

  .brand-spec .swatches {
    grid-column: span 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brochure-sticky {
    padding-top: 6rem;
  }

  .brochure-object {
    --brochure-scale: 1.18;
  }

  .brochure-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr);
  }

  .grou-console {
    padding: .55rem;
    border-radius: 1.7rem;
  }

  .grou-console-body {
    flex-direction: row;
    gap: .55rem;
  }

  .grou-console-rail {
    width: 4.75rem;
    height: auto;
    align-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: .6rem;
    transition: width .42s var(--ease), box-shadow .3s var(--ease);
  }

  .grou-console-rail:hover,
  .grou-console-rail:focus-within {
    width: 15.25rem;
    box-shadow: 0 0 0 1px rgba(22, 22, 22, .07), .75rem 0 2.5rem rgba(22, 22, 22, .1);
  }

  .grou-console-brand {
    width: 14rem;
  }

  .grou-console-brand > span:last-child,
  .grou-console-tabs button > i {
    min-width: 0;
    display: grid;
    gap: .05rem;
    opacity: 0;
    transform: translate3d(-.45rem, 0, 0);
    transition: opacity .2s var(--ease), transform .35s var(--ease);
  }

  .grou-console-brand > span:last-child strong,
  .grou-console-tabs button > i strong {
    overflow: hidden;
    font-size: .78rem;
    font-style: normal;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .grou-console-brand > span:last-child small,
  .grou-console-tabs button > i small {
    overflow: hidden;
    color: #777a77;
    font-size: .66rem;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .grou-console-tabs {
    flex: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: .3rem;
  }

  .grou-console-tabs button {
    width: 14rem;
    min-width: 0;
    min-height: 3.5rem;
    justify-content: flex-start;
    gap: .8rem;
    padding: 0 .6rem;
    text-align: left;
  }

  .grou-console-rail:hover .grou-console-brand > span:last-child,
  .grou-console-rail:focus-within .grou-console-brand > span:last-child,
  .grou-console-rail:hover .grou-console-tabs button > i,
  .grou-console-rail:focus-within .grou-console-tabs button > i {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: .08s;
  }

  .grou-console-stage {
    min-height: 57rem;
    flex: 1;
  }

  .grou-console-panel,
  .grou-console-panel.is-active {
    gap: 1.35rem;
    padding: 1.35rem;
  }

  .grou-console-panel-head {
    grid-template-columns: minmax(0, 1.35fr) minmax(14rem, .65fr);
    gap: 2rem;
    align-items: end;
  }

  .grou-console-panel-head h3 {
    font-size: clamp(2.5rem, 5.3vw, 4.4rem);
  }

  .grou-console-panel-head > p {
    justify-self: end;
  }

  .menu-feature {
    grid-template-columns: minmax(15rem, .75fr) minmax(0, 1.25fr);
  }

  .menu-pages {
    min-height: 34rem;
  }

  .menu-pages img {
    position: absolute;
    width: 85%;
  }

  .menu-pages img:first-child {
    top: 8%;
    left: -2%;
  }

  .menu-pages img:last-child {
    right: -2%;
    bottom: 6%;
    margin: 0;
  }

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

  .metric--lead {
    grid-column: span 2;
  }

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

  .campaign-proof {
    grid-template-columns: 1fr auto auto;
  }

  .campaign-proof > span {
    grid-column: auto;
  }

  .strategy-loop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .strategy-loop li {
    min-height: 10rem;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, .18);
  }

  .system-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .content-card,
  .social-card,
  .retention-card,
  .commerce-card {
    grid-column: span 2;
  }

  .content-card,
  .social-card,
  .retention-card,
  .commerce-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-card figure,
  .social-demo,
  .journeys,
  .commerce-visual {
    min-height: 100%;
  }

  .content-card figure {
    order: -1;
  }

  .social-demo,
  .journeys {
    align-self: center;
  }

  .journeys {
    margin: 1.25rem;
  }

  .commerce-visual {
    min-height: 35rem;
  }

  .field-copy {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: end;
  }

}

@media (min-width: 64rem) {
  .hero-logo {
    margin-top: clamp(2rem, 7vh, 5rem);
  }

  .scope-list {
    grid-template-columns: repeat(8, 1fr);
  }

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

  .brand-orbit {
    grid-column: 1 / -1;
  }

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

  .brand-spec .swatches {
    grid-column: span 2;
  }

  .metric {
    min-height: 14rem;
  }

  .grou-console-stage {
    min-height: 48rem;
  }

  .grou-console-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grou-console-kpis > div {
    min-height: 6.7rem;
    padding: 1rem;
  }

  .grou-console-workspace {
    grid-template-columns: minmax(0, 1.45fr) minmax(13rem, .7fr);
  }

  .grou-console-workspace--map {
    grid-template-columns: minmax(0, 1.2fr) minmax(15rem, .8fr);
  }

  .grou-console-side {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .map-proof {
    grid-template-columns: minmax(16rem, 1.2fr) minmax(10rem, .8fr);
  }

  .rank-summary {
    grid-template-columns: 1fr;
  }

  .rank-summary p {
    grid-column: 1;
  }

  .surface-links {
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .surface-links > div,
  .surface-links > a {
    min-height: 13rem;
    padding: 1.4rem;
    border-right: 1px solid var(--line);
  }

  .surface-links > a {
    align-content: end;
  }

  .strategy-loop {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .strategy-loop li {
    min-height: 13rem;
    display: flex;
    flex-direction: column;
  }

  .strategy-loop strong {
    margin-top: auto;
  }

  .manifesto-inner > p:last-child {
    justify-self: end;
  }

  .system-map {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }

  .system-map > i {
    display: block;
    color: var(--caramel);
    font-style: normal;
  }

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

  .content-card,
  .social-card,
  .retention-card,
  .commerce-card,
  .owned-card,
  .app-card {
    grid-column: span 6;
  }

  .content-card,
  .social-card,
  .retention-card,
  .commerce-card {
    display: flex;
    flex-direction: column;
  }

  .content-card figure {
    order: initial;
  }

  .content-card figure,
  .social-demo,
  .journeys,
  .commerce-visual {
    min-height: 31rem;
  }

  .social-demo {
    width: min(74%, 29rem);
    margin: auto;
  }

  .journeys {
    margin: auto clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  }

  .field-copy > div {
    justify-self: end;
  }

  .operations-loop {
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .operations-loop li {
    display: flex;
    min-height: 17rem;
    flex-direction: column;
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .18);
  }

  .operations-loop strong {
    margin-top: auto;
  }
}

@media (min-width: 90rem) {
  :root {
    --gutter: max(5.5rem, calc((100vw - 100rem) / 2));
  }

  .bento {
    gap: 1.25rem;
  }
}

/* Align the GROU case with the continuous editorial frame used by Renauticos. */
body.grou-framed {
  --case-content-inset: clamp(1rem, 1.4vw, 1.5rem);
  --case-max: 90rem;
}

body.grou-framed > main {
  position: relative;
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--case-max);
  margin-inline: auto;
}

body.grou-framed > main::after {
  position: absolute;
  z-index: 3;
  top: calc(100svh - 6rem);
  right: 0;
  bottom: 0;
  left: 0;
  border-inline: 1px solid rgba(22, 22, 22, .15);
  content: "";
  pointer-events: none;
}

body.grou-framed > main > .hero {
  width: 100vw;
  min-height: calc(100svh - 6rem);
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: 0;
}

body.grou-framed > main > section:not(.hero) {
  padding-inline: var(--case-content-inset);
  border-bottom: 1px solid rgba(22, 22, 22, .15);
}

body.grou-framed > main > section.dark,
body.grou-framed > main > .field-section {
  border-bottom-color: rgba(255, 255, 255, .16);
}

body.grou-framed .brochure-sticky,
body.grou-framed .field-copy {
  padding-inline: var(--case-content-inset);
}

body.grou-framed .hero-logo {
  width: clamp(15rem, 30vw, 27rem);
  margin: 0;
}

body.grou-framed main :is(h1, h2, h3, h4, blockquote) {
  font-style: normal;
  text-transform: none;
}

body.grou-framed .intro-grid h1,
body.grou-framed .intro-grid h2 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 4.8vw, 4.65rem);
  letter-spacing: -.025em;
  line-height: .98;
}

body.grou-framed :is(
  .brand-heading h2,
  .brochure-heading h2,
  .menu-gallery-head h2,
  .performance-head h2,
  .section-heading h2,
  .field-copy h2,
  .strategy-head h2,
  .operations h2,
  .closing h2,
  .manifesto blockquote
) {
  font-size: clamp(2.9rem, 5.7vw, 5.5rem);
  letter-spacing: -.035em;
  line-height: .95;
}

body.grou-framed .card-copy h3,
body.grou-framed .strategy-brief h3 {
  font-size: clamp(2rem, 4.25vw, 4.1rem);
  letter-spacing: -.035em;
  line-height: .96;
}

body.grou-framed .grou-console-panel-head h3 {
  font-size: clamp(2rem, 5.2vw, 4.25rem);
  letter-spacing: -.045em;
  line-height: .94;
}

.signal-grid--local-only {
  grid-template-columns: minmax(0, 1fr) !important;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.signal-grid--local-only .local-proof {
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

/* Follow the Renauticos editorial rhythm: headline first, copy below. */
body.grou-framed :is(
  .intro-grid,
  .brand-heading,
  .brochure-heading,
  .menu-gallery-head,
  .performance-head,
  .section-heading,
  .strategy-head,
  .operations-head,
  .field-copy
) {
  grid-template-columns: minmax(0, 1fr);
}

body.grou-framed :is(
  .brochure-heading > div,
  .menu-gallery-head > p,
  .performance-head > p,
  .section-heading > p,
  .strategy-head > p,
  .operations-head > p,
  .manifesto-inner > p:last-child
) {
  width: min(100%, 48ch);
  max-width: none;
  justify-self: start;
  align-self: start;
}

body.grou-framed .intro-copy,
body.grou-framed .brand-heading > div,
body.grou-framed .field-copy > div {
  width: min(100%, 72rem);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-self: start;
}

body.grou-framed .intro-copy p,
body.grou-framed .brand-heading > div p,
body.grou-framed .field-copy > div p {
  max-width: 48ch;
  margin: 0;
  text-wrap: pretty;
}

body.grou-framed .scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  border: 0;
  scroll-margin-top: 5.5rem;
}

body.grou-framed .scope-list > p {
  width: 100%;
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

body.grou-framed .scope-list span {
  display: inline-flex;
  width: auto;
  min-height: 2.75rem;
  padding: .65rem 1.25rem;
  border: 1px solid rgba(22, 22, 22, .2);
  border-radius: 999px;
  font-size: clamp(.875rem, 1.2vw, 1.125rem);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
}

@media (min-width: 43.75rem) {
  body.grou-framed .intro-copy,
  body.grou-framed .brand-heading > div,
  body.grou-framed .field-copy > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 7vw, 6rem);
  }

  .grou-funnel ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(22, 22, 22, .09);
  }

  .grou-funnel li {
    padding-inline: .8rem;
    border-right: 1px solid rgba(22, 22, 22, .09);
  }
}

@media (max-width: 43.6875rem) {
  .footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  body.grou-framed .hero-logo {
    width: min(72vw, 19rem);
  }

  body.grou-framed .grou-console-panel-head h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (max-width: 35rem) {
  body.grou-framed > main::after {
    top: calc(100svh - 4.125rem);
  }

  body.grou-framed > main > .hero {
    min-height: calc(100svh - 4.125rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  a,
  button {
    cursor: pointer;
  }

  .system-map article {
    transition: transform .3s ease, background .3s ease;
  }

  .system-map article:hover {
    background: var(--coffee);
    transform: translateY(-.35rem);
  }

  .surface-links > a:hover {
    color: var(--foam);
    background: var(--espresso);
  }

  .surface-links > a:hover small {
    color: rgba(255, 255, 255, .55);
  }
}

a:focus-visible,
button:focus-visible {
  outline: .18rem solid var(--golden);
  outline-offset: .2rem;
}

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

  .brochure-scroll {
    min-height: 0;
    height: auto;
  }

  .brochure-sticky {
    position: relative;
    min-height: auto;
  }

  .brochure-object {
    --brochure-left: 0deg !important;
    --brochure-right: 0deg !important;
    --brochure-scale: 1 !important;
    --brochure-tilt-x: 0deg !important;
    --brochure-tilt-z: 0deg !important;
    --brochure-left-depth: 0rem !important;
    --brochure-right-depth: 0rem !important;
  }

  .brochure-hint {
    display: none;
  }

  .menu-drift-wall {
    top: -8%;
    height: 116%;
    transform: rotateZ(-1deg) scale(1.02);
  }

  .menu-drift-track {
    animation: none !important;
    transform: none !important;
  }

  .menu-drift-sequence + .menu-drift-sequence {
    display: none;
  }

  .icon-promo-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .icon-promo-viewport::-webkit-scrollbar {
    display: none;
  }

  .icon-promo-track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .icon-promo-sequence + .icon-promo-sequence {
    display: none;
  }

  .trend-line {
    stroke-dashoffset: 0;
  }

  .signup-bars i {
    transform: scaleY(var(--bar-scale, 1));
  }

  .grou-reach > div > i::after {
    transform: scaleX(var(--meter-scale, 1));
  }

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

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

/* Compact editorial spacing; preserve the brochure's scroll animation runway. */
body.grou-framed main > :is(.case-intro, .brand-system, .performance, .system, .monthly-strategy, .closing, .menu-gallery, .operations, .website-showcase) {
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}
body.grou-framed :is(.intro-grid, .brand-heading, .performance-head, .strategy-head, .section-heading) {
  padding-block: clamp(1.75rem, 4vw, 3.5rem);
}
@font-face {
  font-family: "GROU Petrona";
  src: url("/fonts/grou/Petrona-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}
.type-spec--petrona strong { font-family: "GROU Petrona", Georgia, serif; font-weight: 500; font-style: italic; }
.website-heading { display: grid; gap: 1.75rem; }
.website-heading h2 { max-width: 16ch; margin: 0; font-size: clamp(2.9rem, 5.7vw, 5.5rem); font-weight: 500; letter-spacing: -.035em; line-height: .95; }
.website-heading p { max-width: 48ch; margin: 0; font-size: clamp(17px, 1.35vw, 22px); line-height: 1.4; }
.grou-website-monitor { margin-top: clamp(2rem, 4vw, 3rem); }
.grou-website-screen { border-radius: 0 0 1.1rem 1.1rem; overflow: hidden; background: var(--paper); }
.grou-website-screen video { display: block; width: 100%; height: auto; }

body.grou-framed main > .brand-system { padding-bottom: clamp(1rem, 2vw, 2rem); }
.brochure-controls { padding: 0 0 1rem; }
.brochure-controls .brochure-switch { margin: 0; }

/* Remove numbered section dividers and their reserved heading space. */
body.grou-framed > main > section:not(.hero) { border-top: 0; border-bottom: 0; }
body.grou-framed :is(.intro-grid, .brand-heading, .performance-head, .strategy-head, .section-heading) { padding-top: 0; }

/* Explicit desktop headline lines and aligned type samples. */
body.grou-framed #case-title, body.grou-framed #brand-title { max-width: none; }
@media (min-width: 761px) {
  .grou-title-line { display: block; white-space: nowrap; }
}
#brand-spec .type-spec { justify-content: flex-start; }
#brand-spec .type-spec small { margin-bottom: .35rem; }
body.grou-framed main > .brand-system { padding-bottom: .5rem; }
body.grou-framed .brochure-sticky { padding-top: 1rem; top: 6rem; min-height: calc(100svh - 6rem); }
@media (max-width: 760px) {
  body.grou-framed .brochure-sticky { top: 4.25rem; min-height: calc(100svh - 4.25rem); }
}

body.grou-framed .performance-head { padding-bottom: 1rem; }
.performance > .grou-console { margin-top: 1rem; }
.signal-grid--local-only { margin-top: clamp(1.25rem, 3vw, 2rem); }
.signal-grid--local-only #local-search { border: 0; padding-top: 0; box-shadow: none; }
#local-search .map-proof { margin-top: 0; }

body.grou-framed #website-title {
  max-width: none;
  font-size: calc(clamp(2.9rem, 5.7vw, 5.5rem) - 3px);
}
body.grou-framed main > .case-intro { padding-bottom: clamp(1.25rem, 2.5vw, 2.5rem); }
body.grou-framed main > .website-showcase { padding-top: clamp(1.25rem, 2.5vw, 2.5rem); }
@media (min-width: 761px) {
  body.grou-framed #website-title { white-space: nowrap; }
}

/* GROU Store: an expandable catalog in the shared monitor frame. */
body.grou-framed main > .shop-showcase { padding-block: clamp(2.5rem, 5vw, 5rem); }
.shop-monitor { margin-top: 0; }
.shop-preview { position: relative; display: block; width: 100%; padding: 0; border: 0; overflow: hidden; border-radius: 0 0 1rem 1rem; background: #fff; cursor: zoom-in; }
.shop-preview img { display: block; width: 100%; height: auto; transition: transform 650ms ease; }
.shop-zoom-label { position: absolute; right: 1rem; bottom: 1rem; padding: .75rem 1rem; border-radius: 2rem; background: #161616; color: #fff; font: 500 .8rem var(--display); }
.shop-preview:focus-visible { outline: 3px solid #d9ff43; outline-offset: -4px; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .shop-preview:hover img { transform: scale(1.025); }
}
.shop-dialog { width: min(96vw, 1440px); max-width: 96vw; max-height: 90svh; padding: 0; border: 0; border-radius: 1rem; background: #fff; overflow: auto; }
.shop-dialog::backdrop { background: rgba(0, 0, 0, .8); }
.shop-dialog img { display: block; width: 100%; height: auto; }
.shop-dialog-close { position: sticky; top: .75rem; float: right; margin: .75rem .75rem -3rem 0; z-index: 1; padding: .75rem 1rem; border: 0; border-radius: 2rem; background: #161616; color: white; cursor: pointer; }

.shop-devices { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, 24%); gap: clamp(1rem, 2.5vw, 2.5rem); align-items: center; }
.shop-devices .shop-monitor { min-width: 0; }
.shop-phone { position: relative; width: 100%; aspect-ratio: 644 / 1320; filter: drop-shadow(0 18px 18px rgba(0,0,0,.14)); }
.shop-phone-frame { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.shop-phone-screen { position: absolute; inset: 2% 4.7%; border-radius: 16% / 7%; overflow: auto; background: white; scrollbar-width: none; overscroll-behavior: contain; padding-top: 16%; }
.shop-phone-screen::-webkit-scrollbar { display: none; }
.shop-phone-screen img { width: 100%; height: auto; display: block; }
.shop-phone-screen:focus-visible { outline: 3px solid #b0cd49; outline-offset: -4px; }
.shop-partners { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem; margin: 2.5rem auto 0; width: fit-content; color: inherit; text-decoration: none; font-size: .9rem; }
.shop-partners img { width: 130px; height: auto; }
@media (max-width: 700px) {
 .shop-devices { grid-template-columns: 1fr; gap: 2rem; }
 .shop-phone { width: min(68%, 280px); justify-self: center; }
}

/* Platform reports share the case study's monitor and lime controls. */
body.grou-framed main > .paid-media-showcase { padding-block: clamp(2.5rem, 5vw, 5rem); }
.paid-media-showcase .section-heading h2 { max-width: 19ch; }
.paid-media-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.paid-media-tabs { display: inline-flex; padding: .3rem; gap: .3rem; border: 1px solid var(--line); border-radius: 1rem; }
.paid-media-tabs button { padding: .8rem 1.3rem; border-radius: .7rem; background: transparent; color: var(--ink); font: inherit; font-size: .9rem; cursor: pointer; transition: background .2s ease; }
.paid-media-tabs button[aria-selected="true"] { background: var(--lime); }
.paid-media-hint { color: #737373; font-size: .8rem; }
.paid-media-monitor { margin-top: 0; }
.paid-media-monitor [hidden] { display: none; }
.paid-media-preview { display: grid; position: relative; place-items: center; width: 100%; aspect-ratio: 1824 / 921; padding: 0; border: 0; border-radius: 0 0 1rem 1rem; overflow: hidden; background: #f2f3f4; }
.paid-media-preview img { display: block; width: 100%; height: auto; }
.paid-media-tabs button:focus-visible { outline: 3px solid #8b9f19; outline-offset: -3px; }
@media (max-width: 700px) {
 .paid-media-hint { display: none; }
}

body.grou-framed main > .business-strategies { padding-block: clamp(2.5rem, 5vw, 5rem); }
.business-strategies-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); align-items: center; gap: clamp(2rem, 4vw, 4rem); }
.business-strategies-grid p { margin: 0; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.5; text-wrap: pretty; }
.business-strategies-grid video { display: block; width: 100%; height: auto; border-radius: clamp(1rem, 2vw, 1.75rem); background: #f6f2e9; }
@media (max-width: 760px) { .business-strategies-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.seo-positioning-note {
  position: relative;
  z-index: 4;
  width: min(86%, 60rem);
  margin: -1rem auto -1.5rem;
  padding: .85rem 1.25rem;
  border: 1px solid rgba(22, 22, 22, .12);
  border-radius: 1.5rem;
  background: #f2f2ed;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
  text-align: center;
}
.seo-positioning-note p { margin: 0; font-size: clamp(.875rem, 1.25vw, 1rem); line-height: 1.4; text-wrap: pretty; }
.seo-positioning-note strong { font-weight: 600; }

body.grou-framed #business-strategies-title { max-width: none; }
.business-strategies-copy { display: grid; gap: 1.25rem; }
.business-strategies-grid .business-strategies-detail { font-size: clamp(.9rem, 1.35vw, 1.05rem); color: #727272; }

body.grou-framed #shop-title { max-width: none; }
@media (min-width: 761px) { body.grou-framed #shop-title { white-space: nowrap; } }

/* Spanish headings can be longer than the English one-line treatment. */
html:lang(es) body.grou-framed :is(#website-title, #shop-title, .grou-title-line) { white-space: normal; max-width: 100%; text-wrap: balance; }
html:lang(es) .website-heading > * { min-width: 0; }
