:root {
  color-scheme: light;
  --gb-paper: #f7f8f5;
  --gb-white: #ffffff;
  --gb-ink: #111916;
  --gb-ink-soft: #1d2925;
  --gb-muted: #5b6964;
  --gb-line: rgba(17, 25, 22, 0.16);
  --gb-line-light: rgba(255, 255, 255, 0.18);
  --gb-warm: #fdd280;
  --gb-mint: #8edbd4;
  --gb-coral: #e77a65;
  --gb-blue: #7aa5d8;
  --gb-max: 1240px;
  --gb-radius: 8px;
  --gb-font: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body.gb-showcase {
  background: var(--gb-paper);
  color: var(--gb-ink);
  font-family: var(--gb-font);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  overflow-x: hidden;
}

.gb-showcase a {
  color: inherit;
}

.gb-showcase img {
  max-width: 100%;
}

.gb-skip-link {
  background: var(--gb-warm);
  color: var(--gb-ink);
  font-weight: 800;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -100px;
  z-index: 100;
}

.gb-skip-link:focus {
  top: 1rem;
}

.gb-site-header {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 13, 0.68);
  color: #ffffff;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 72px;
  padding: 0 max(3vw, 24px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.gb-site-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.72rem;
  text-decoration: none;
}

.gb-site-brand img {
  background: transparent;
  border-radius: 0;
  display: block;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.gb-site-brand span {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
}

.gb-site-nav {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.gb-site-nav a,
.gb-login-link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.gb-site-nav a:hover,
.gb-login-link:hover {
  color: #ffffff;
}

.gb-site-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.gb-download-link {
  align-items: center;
  background: var(--gb-warm);
  border-radius: 999px;
  color: var(--gb-ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 1rem;
  text-decoration: none;
}

.gb-mobile-nav {
  display: none;
  position: relative;
}

.gb-mobile-nav summary {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  list-style: none;
  width: 40px;
}

.gb-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.gb-mobile-nav nav {
  background: var(--gb-ink);
  border: 1px solid var(--gb-line-light);
  border-radius: var(--gb-radius);
  display: grid;
  min-width: 220px;
  padding: 0.6rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
}

.gb-mobile-nav nav a {
  border-bottom: 1px solid var(--gb-line-light);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem;
  text-decoration: none;
}

.gb-mobile-nav nav a:last-child {
  border-bottom: 0;
  color: var(--gb-warm);
}

.gb-hero {
  color: #ffffff;
  height: calc(100svh - 72px);
  max-height: 880px;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

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

.gb-hero-media {
  object-fit: cover;
  object-position: center;
}

.gb-hero-shade {
  background: rgba(6, 12, 10, 0.58);
}

.gb-hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--gb-max);
  padding: 7.8rem 1.5rem 9rem;
  position: relative;
  z-index: 2;
}

.gb-eyebrow,
.gb-kicker,
.gb-section-index {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.gb-eyebrow {
  color: var(--gb-warm);
}

.gb-hero h1 {
  font-size: 6.4rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 1rem 0 0;
}

.gb-hero-statement {
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.05;
  margin: 1.6rem 0 0;
}

.gb-hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin: 1.35rem 0 0;
  max-width: 560px;
}

.gb-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gb-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
}

.gb-button-warm {
  background: var(--gb-warm);
  color: var(--gb-ink);
}

.gb-button-glass {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.gb-button:hover,
.gb-download-link:hover,
.gb-app-button:hover {
  transform: translateY(-2px);
}

.gb-hero-signals {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 50%;
  list-style: none;
  margin: 0;
  max-width: var(--gb-max);
  padding: 0 1.5rem 1.5rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.gb-hero-signals li {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 0.1rem;
  padding-left: 1rem;
}

.gb-hero-signals strong {
  color: #ffffff;
  font-size: 0.85rem;
}

.gb-hero-signals span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.gb-intro-band {
  align-items: end;
  background: var(--gb-warm);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.55fr 1.4fr 1fr;
  padding: 6rem max(calc((100vw - var(--gb-max)) / 2), 4vw);
}

.gb-intro-band h2,
.gb-section-heading h2,
.gb-schedule-copy h2,
.gb-assistant-section h2,
.gb-spatial-copy h2,
.gb-download-section h2 {
  font-size: 4.5rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
}

.gb-intro-band > p:last-child {
  color: rgba(17, 25, 22, 0.72);
  margin: 0;
  max-width: 470px;
}

.gb-work-section,
.gb-everything-section {
  margin: 0 auto;
  max-width: var(--gb-max);
  padding: 8rem 1.5rem;
}

.gb-section-heading {
  display: grid;
  gap: 1.2rem 3rem;
  grid-template-columns: 0.7fr 1.5fr 0.9fr;
}

.gb-section-heading .gb-kicker {
  color: #24766e;
}

.gb-section-heading h2 {
  font-size: 4rem;
}

.gb-section-heading > p:last-child {
  color: var(--gb-muted);
  margin: 0;
}

.gb-work-ledger {
  border-bottom: 1px solid var(--gb-line);
  margin: 5rem 0 3rem;
}

.gb-work-ledger > div {
  align-items: start;
  border-top: 1px solid var(--gb-line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(110px, 0.35fr) 1fr;
  padding: 1.35rem 0;
}

.gb-work-ledger dt {
  font-size: 1.05rem;
  font-weight: 800;
}

.gb-work-ledger dd {
  color: var(--gb-muted);
  margin: 0;
}

.gb-product-frame {
  background: #e9eeeb;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  box-shadow: 0 36px 90px rgba(17, 25, 22, 0.15);
  margin: 0;
  overflow: hidden;
}

.gb-product-frame-bar {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--gb-line);
  display: flex;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0 0.8rem;
}

.gb-product-frame-bar span {
  background: #c9d0cd;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.gb-product-frame-bar strong {
  color: var(--gb-muted);
  font-size: 0.68rem;
  margin-left: 0.45rem;
}

.gb-product-frame > img {
  display: block;
  height: auto;
  width: 100%;
}

.gb-product-frame figcaption {
  background: #ffffff;
  color: var(--gb-muted);
  font-size: 0.75rem;
  padding: 0.8rem 1rem;
}

.gb-runway {
  background: var(--gb-ink);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(calc((100vw - var(--gb-max)) / 2), 4vw);
}

.gb-runway article {
  border-left: 1px solid var(--gb-line-light);
  min-height: 330px;
  padding: 3.5rem 2rem;
}

.gb-runway article:last-child {
  border-right: 1px solid var(--gb-line-light);
}

.gb-runway article > span {
  color: var(--gb-mint);
  font-size: 0.72rem;
  font-weight: 800;
}

.gb-runway h3 {
  font-size: 2.3rem;
  letter-spacing: 0;
  line-height: 1;
  margin: 5rem 0 1rem;
}

.gb-runway p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  margin: 0;
}

.gb-schedule-section {
  align-items: center;
  background: #dceae6;
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  padding: 8rem max(calc((100vw - var(--gb-max)) / 2), 4vw);
}

.gb-schedule-copy h2 {
  font-size: 4rem;
  margin-top: 1.3rem;
}

.gb-schedule-copy > p:last-of-type {
  color: var(--gb-muted);
  margin: 1.6rem 0 0;
  max-width: 520px;
}

.gb-schedule-copy ul {
  border-top: 1px solid var(--gb-line);
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.gb-schedule-copy li {
  border-bottom: 1px solid var(--gb-line);
  font-size: 0.84rem;
  font-weight: 750;
  padding: 0.78rem 0;
}

.gb-agenda {
  background: var(--gb-white);
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  box-shadow: 0 30px 70px rgba(17, 25, 22, 0.12);
  overflow: hidden;
}

.gb-agenda header {
  align-items: center;
  border-bottom: 1px solid var(--gb-line);
  display: flex;
  justify-content: space-between;
  padding: 1.2rem;
}

.gb-agenda header div {
  display: grid;
}

.gb-agenda header span {
  color: #24766e;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.gb-agenda header strong {
  font-size: 1.1rem;
}

.gb-agenda ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gb-agenda li {
  align-items: center;
  border-bottom: 1px solid var(--gb-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 56px 1fr auto;
  min-height: 76px;
  padding: 0.8rem 1.2rem;
}

.gb-agenda li:last-child {
  border-bottom: 0;
}

.gb-agenda time {
  color: var(--gb-muted);
  font-size: 0.75rem;
}

.gb-agenda li div {
  display: grid;
}

.gb-agenda li strong {
  font-size: 0.88rem;
}

.gb-agenda li div span {
  color: var(--gb-muted);
  font-size: 0.7rem;
}

.gb-agenda em {
  background: #edf4f1;
  border-radius: 999px;
  color: #285f59;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
}

.gb-assistant-section {
  align-items: start;
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--gb-max);
  padding: 9rem 1.5rem;
}

.gb-assistant-section h2 {
  font-size: 4rem;
  margin-top: 1.3rem;
}

.gb-assistant-flow {
  display: grid;
  gap: 1.2rem;
}

.gb-observation {
  align-self: end;
  background: #ecefed;
  border-radius: 8px 8px 2px 8px;
  font-size: 1.05rem;
  justify-self: end;
  margin: 0;
  max-width: 430px;
  padding: 1rem 1.2rem;
}

.gb-assistant-result {
  border-left: 3px solid var(--gb-mint);
  display: grid;
  gap: 0.6rem;
  max-width: 470px;
  padding: 1rem 0 1rem 1.3rem;
}

.gb-assistant-result > span,
.gb-assistant-result small {
  color: var(--gb-muted);
  font-size: 0.72rem;
}

.gb-assistant-result > strong {
  font-size: 1.5rem;
}

.gb-assistant-result ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0.2rem 0;
  padding: 0;
}

.gb-assistant-result li {
  font-size: 0.85rem;
  padding-left: 1.1rem;
  position: relative;
}

.gb-assistant-result li::before {
  color: #24766e;
  content: "\2713";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.gb-spatial-section {
  background: #18231f;
  color: #ffffff;
  display: grid;
  gap: 6rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  overflow: hidden;
  padding: 9rem max(calc((100vw - var(--gb-max)) / 2), 4vw);
  position: relative;
}

.gb-spatial-section::after {
  border: 1px solid rgba(142, 219, 212, 0.28);
  content: "";
  height: 420px;
  position: absolute;
  right: -140px;
  top: -120px;
  transform: rotate(18deg);
  width: 420px;
}

.gb-spatial-copy {
  position: relative;
  z-index: 1;
}

.gb-spatial-copy .gb-section-index {
  color: var(--gb-mint);
}

.gb-spatial-copy h2 {
  font-size: 5rem;
  margin-top: 1.3rem;
  max-width: 820px;
}

.gb-spatial-copy > p:last-child {
  color: rgba(255, 255, 255, 0.66);
  margin: 2rem 0 0;
  max-width: 620px;
}

.gb-spatial-points {
  border-bottom: 1px solid var(--gb-line-light);
  position: relative;
  z-index: 1;
}

.gb-spatial-points > div {
  border-top: 1px solid var(--gb-line-light);
  display: grid;
  gap: 0.5rem;
  padding: 1.4rem 0;
}

.gb-spatial-points strong {
  font-size: 1rem;
}

.gb-spatial-points span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.gb-everything-section .gb-section-heading {
  margin-bottom: 4rem;
}

.gb-feature-wall {
  border-bottom: 1px solid var(--gb-line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gb-feature-wall li {
  align-items: center;
  border-top: 1px solid var(--gb-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 38px 1fr;
  min-height: 72px;
  padding: 0.8rem 1rem 0.8rem 0;
}

.gb-feature-wall li:nth-child(odd) {
  border-right: 1px solid var(--gb-line);
}

.gb-feature-wall li:nth-child(even) {
  padding-left: 1.2rem;
}

.gb-feature-wall span {
  color: #24766e;
  font-size: 0.68rem;
  font-weight: 800;
}

.gb-feature-wall strong {
  font-size: 1rem;
}

.gb-download-section {
  align-items: center;
  background: var(--gb-warm);
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 1fr auto;
  padding: 6rem max(calc((100vw - var(--gb-max)) / 2), 4vw);
}

.gb-download-section > img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(17, 25, 22, 0.18);
  height: 104px;
  width: 104px;
}

.gb-download-section h2 {
  font-size: 3.8rem;
  margin-top: 0.7rem;
}

.gb-download-section p:last-child {
  color: rgba(17, 25, 22, 0.68);
  margin: 1rem 0 0;
  max-width: 620px;
}

.gb-download-actions {
  align-items: center;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.gb-app-button {
  align-items: center;
  background: var(--gb-ink);
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  gap: 0.75rem;
  min-height: 62px;
  min-width: 220px;
  padding: 0.7rem 1rem;
  text-decoration: none;
}

.gb-app-button > span:first-child {
  font-size: 1.5rem;
}

.gb-app-button > span:last-child {
  display: grid;
  line-height: 1.12;
}

.gb-app-button small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
}

.gb-app-button strong {
  font-size: 1rem;
}

.gb-download-actions > a:last-child {
  font-size: 0.72rem;
  font-weight: 750;
}

.gb-site-footer {
  align-items: center;
  background: var(--gb-ink);
  color: #ffffff;
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 1fr auto auto;
  min-height: 150px;
  padding: 2rem max(calc((100vw - var(--gb-max)) / 2), 4vw);
}

.gb-site-footer > p,
.gb-site-footer > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin: 0;
}

.gb-site-footer nav {
  display: flex;
  gap: 1.2rem;
}

.gb-site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.gb-showcase a:focus-visible,
.gb-showcase summary:focus-visible {
  outline: 3px solid var(--gb-blue);
  outline-offset: 4px;
}
