@font-face {
  font-family: Manrope;
  src: url("/astra/fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("/astra/fonts/instrument-serif-latin-400-italic.woff2")
    format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
html:has(.astra-site) {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: #080909;
}
body:has(.astra-site) {
  margin: 0;
  background: #080909;
}
.astra-site {
  --ink: #080909;
  --paper: #f1f2ef;
  --muted: #aeb3b1;
  --line: #353a38;
  --accent: #d6ff75;
  --gutter: 56px;
  background: var(--ink);
  color: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow: clip;
}
.astra-site * {
  box-sizing: border-box;
  letter-spacing: 0;
}
.astra-site a {
  color: inherit;
  text-decoration: none;
}
.astra-site button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.astra-site h1,
.astra-site h2,
.astra-site h3,
.astra-site p {
  margin: 0;
}
.astra-site h1,
.astra-site h2,
.astra-site h3 {
  font-family: Manrope, Arial, sans-serif;
  color: inherit;
}
.astra-site em {
  font-family: Instrument, Georgia, serif;
  font-weight: 400;
}
.astra-site ::selection {
  background: var(--accent);
  color: var(--ink);
}
.astra-site :focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
.astra-site svg {
  flex-shrink: 0;
}
.a-kicker,
.a-section-label,
.a-row-number {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.a-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.a-skip {
  position: fixed;
  left: 24px;
  top: -100px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink) !important;
  padding: 12px 20px;
}
.a-skip:focus {
  top: 12px;
}
.a-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  gap: 24px;
  background: #080909;
  border-bottom: 1px solid #292d2b;
}
.a-brand {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.a-brand span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #b3b8b5;
  margin-top: 6px;
}
.a-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.a-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  position: relative;
}
.a-nav a:after {
  content: "";
  position: absolute;
  bottom: 6px;
  height: 1px;
  left: 0;
  right: 100%;
  background: currentColor;
  transition: right 0.25s;
}
.a-nav a:hover:after {
  right: 0;
}
.a-nav-contact {
  margin-left: 12px;
}
.a-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.a-language {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  min-height: 44px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.a-language span:not(.is-current) {
  color: #aab0ac;
}
.a-language .is-current {
  color: var(--accent);
}
.a-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
}
.a-menu-close {
  display: none;
}
.a-hero {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  height: calc(91svh - 84px);
  max-height: 1050px;
  padding: 34px var(--gutter) 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #050606;
}
.a-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 0%;
  z-index: -2;
}
.a-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #d8ddda;
  font-size: 11px;
  text-transform: uppercase;
}
.a-portrait-effect {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.a-portrait-effect canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.a-portrait-effect[hidden] {
  display: none;
}
.a-portrait-toggle {
  position: absolute;
  right: var(--gutter);
  bottom: 112px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #818b85;
  border-radius: 50%;
  background: #080909b8;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.a-portrait-toggle[hidden] {
  display: none;
}
.a-portrait-toggle:hover,
.a-portrait-toggle[aria-pressed="true"] {
  color: var(--accent);
  border-color: var(--accent);
}
.a-hero[data-emotion-hover="true"] {
  cursor: crosshair;
}
.a-hero a,
.a-hero button {
  cursor: pointer;
}
@media (max-width: 600px) {
  .a-portrait-toggle {
    top: 308px;
    bottom: auto;
    right: calc(var(--gutter) + 8px);
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 600px) and (max-height: 780px) {
  .a-portrait-toggle {
    top: 240px;
  }
}
@media (min-width: 601px) and (max-height: 560px) {
  .a-portrait-toggle {
    bottom: 78px;
  }
}
.a-hero-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.a-hero-title {
  position: relative;
  padding-top: 28px;
  width: 65%;
}
.a-hero-pre {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 29px;
  font-weight: 500;
  margin-bottom: 26px !important;
  line-height: 1;
}
.a-hero-pre em {
  font-size: 36px;
  color: var(--accent);
}
.a-hero h1 {
  font-size: 128px;
  font-weight: 800;
  line-height: 0.91;
  position: relative;
}
.a-title-period {
  color: var(--accent);
}
.a-hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 44px;
}
.a-hero-bottom > p {
  max-width: 390px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}
.a-round-link {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: center;
  font-size: 10px;
  font-weight: 600;
}
.a-round-link svg {
  padding: 15px;
  width: 54px;
  height: 54px;
  border: 1px solid #a8adaa;
  border-radius: 50%;
  transition:
    background 0.25s,
    transform 0.25s;
}
.a-round-link:hover svg {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(4px);
}
.a-hero-coordinate {
  font-size: 10px;
  text-align: right;
  line-height: 1.7;
  color: #c9cecb;
}
.a-hero-vertical {
  position: absolute;
  right: 18px;
  top: 43%;
  font-size: 9px;
  writing-mode: vertical-rl;
  color: #bfc5c1;
}
.a-intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px var(--gutter);
  border-top: 1px solid #373b37;
  border-bottom: 1px solid #373b37;
  font-size: 12px;
  font-weight: 600;
}
.a-intro-strip > span:nth-child(2) {
  color: #adb4ae;
}
.a-intro-strip > a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
}
.a-intro-strip > a > span {
  font-size: 11px;
  font-weight: 500;
  color: #c4c9c5;
}
.a-section {
  padding: 60px var(--gutter) 100px;
  scroll-margin-top: 0;
}
.a-light {
  background: var(--paper);
  color: var(--ink);
}
.a-section-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 38px;
  align-items: center;
}
.a-section-label > span:last-child {
  font-size: 10px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.a-idea {
  padding-top: 62px;
  padding-bottom: 76px;
}
.a-statement {
  font-size: 88px;
  line-height: 1.07;
  font-weight: 500;
  padding: 42px 0 72px;
}
.a-statement em {
  font-size: 100px;
}
.a-idea-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 60px;
  border-top: 1px solid #bdc3bc;
  padding-top: 40px;
}
.a-small-signature {
  font-size: 12px;
  font-weight: 700;
}
.a-small-signature > span {
  font-size: 12px;
  display: block;
  color: #535b54;
  font-weight: 500;
  max-width: 250px;
  padding-top: 6px;
}
.a-lead {
  font-size: 25px;
  line-height: 1.55;
  font-weight: 400;
}
.a-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
}
.a-principles h3 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.a-principles p {
  font-size: 15px;
  line-height: 1.75;
  color: #4f5750;
}
.a-work {
  padding-top: 32px;
}
.a-work .a-section-label {
  border-top: 1px solid #bdc3bc;
  padding-top: 32px;
}
.a-section-title {
  font-size: 59px;
  line-height: 1.1;
  font-weight: 500;
}
.a-section-title em {
  font-size: 72px;
}
.a-work-list {
  margin-top: 56px;
  border-top: 1px solid #bdc3bc;
}
.a-work-row {
  display: grid;
  grid-template-columns: 50px 1fr 1fr 48px;
  gap: 28px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid #bdc3bc;
}
.a-work-row h3 {
  font-size: 29px;
  font-weight: 500;
  line-height: 1.3;
}
.a-work-row p {
  font-size: 15px;
  line-height: 1.8;
  color: #4f5750;
  max-width: 400px;
}
.a-work-link {
  display: flex;
  width: 48px;
  height: 48px;
  border: 1px solid #bdc3bc;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition:
    color 0.25s,
    background 0.25s;
}
.a-work-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.a-ai {
  padding-bottom: 90px;
  background: #080909;
}
.a-ai > .a-section-label {
  padding-bottom: 0;
}
.a-ai-stage {
  height: 660px;
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  isolation: isolate;
}
.a-sculpture {
  position: absolute;
  inset: 0;
  z-index: 1;
  touch-action: pan-y;
  cursor: grab;
}
.a-sculpture:active {
  cursor: grabbing;
}
.a-sculpture canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.a-sculpture canvas[hidden] {
  display: none;
}
.a-sculpture-fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.a-sculpture-fallback img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.a-sculpture[data-ready="true"] .a-sculpture-fallback {
  display: none;
}
.a-ai-watermark {
  position: absolute;
  font-size: 205px;
  font-weight: 700;
  line-height: 1;
  right: var(--gutter);
  top: 36%;
  color: #151b17;
  z-index: -1;
  user-select: none;
}
.a-ai-heading {
  position: absolute;
  top: 180px;
  left: var(--gutter);
  z-index: 2;
  pointer-events: none;
  max-width: 58%;
}
.a-ai-heading .a-kicker {
  color: var(--accent);
  margin-bottom: 22px;
}
.a-ai-heading h2 {
  font-size: 62px;
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 2px 30px #080909;
}
.a-ai-heading h2 em {
  font-size: 92px;
}
.a-scene-controls {
  position: absolute;
  bottom: 26px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}
.a-scene-controls[hidden] {
  display: none;
}
.a-scene-controls .a-kicker {
  font-size: 9px;
  color: #bcc5bd;
}
.a-motion {
  width: 42px;
  height: 42px;
  border: 1px solid #586259;
  background: #080909;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.a-play-icon {
  display: none;
}
.a-motion[aria-pressed="true"] .a-pause-icon {
  display: none;
}
.a-motion[aria-pressed="true"] .a-play-icon {
  display: block;
}
.a-ai-copy {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 60px;
}
.a-ai-copy .a-kicker {
  font-size: 11px;
  color: #bcc4bd;
}
.a-topic-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.a-topic-list > span {
  font-size: 17px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.a-topic-list small {
  color: var(--accent);
  font-size: 10px;
}
.a-ai-detail {
  color: #abb5ad;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 24px !important;
  max-width: 600px;
}
.a-club {
  background: var(--accent);
  color: var(--ink);
}
.a-club-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
  padding-top: 26px;
  align-items: end;
}
.a-club h2 {
  font-size: 100px;
  font-weight: 800;
  line-height: 0.95;
}
.a-club h2 > span {
  display: flex;
  align-items: center;
  gap: 20px;
}
.a-club h2 svg {
  width: 85px;
  height: 85px;
  stroke-width: 1;
}
.a-club-message {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 24px !important;
}
.a-club-message em {
  font-size: 45px;
}
.a-club-copy > p:not(.a-club-message) {
  font-size: 16px;
  line-height: 1.8;
  max-width: 470px;
}
.a-underlined-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #778f42;
  padding: 20px 0 12px;
  font-size: 16px;
  font-weight: 600;
  max-width: 470px;
  margin-top: 24px;
}
.a-underlined-link svg {
  transition: transform 0.25s;
}
.a-underlined-link:hover svg {
  transform: translate(3px, -3px);
}
.a-audience {
  padding-top: 60px;
}
.a-audience-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 28px;
  margin-bottom: 64px;
}
.a-total {
  text-align: right;
  line-height: 1.2;
}
.a-total strong {
  font-size: 76px;
  font-weight: 400;
}
.a-total > span {
  font-size: 11px;
  display: block;
  color: #b7bfb8;
  margin-top: 12px;
}
.a-socials {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.a-social {
  padding: 24px 22px 30px;
  border-right: 1px solid var(--line);
  transition:
    background 0.25s,
    color 0.25s;
}
.a-social:first-child {
  padding-left: 0;
}
.a-social:last-child {
  border-right: 0;
}
.a-social > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: #abb5ad;
}
.a-social h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.a-social strong {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.a-social-handle {
  font-size: 11px;
  display: block;
  color: #abb5ad;
  margin-top: 12px;
}
.a-social:hover {
  background: #182019;
}
.a-social:hover svg {
  color: var(--accent);
}
.a-count-note {
  font-size: 11px;
  color: #abb5ad;
  margin-top: 20px !important;
}
.a-blog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin: 24px 0 60px;
}
.a-blog-heading > p {
  max-width: 280px;
  font-size: 16px;
  line-height: 1.8;
  color: #4f5750;
}
.a-post {
  border-top: 1px solid #bdc3bc;
}
.a-post:last-child {
  border-bottom: 1px solid #bdc3bc;
}
.a-post summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 50px 1fr 48px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
}
.a-post summary::-webkit-details-marker {
  display: none;
}
.a-post-category {
  display: block;
  font-size: 11px;
  color: #515a53;
  margin-bottom: 10px;
}
.a-post h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
}
.a-post-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdc3bc;
  border-radius: 50%;
  transition: background 0.25s;
}
.a-post-icon svg {
  transition: transform 0.25s;
}
.a-post[open] .a-post-icon svg {
  transform: rotate(45deg);
}
.a-post summary:hover .a-post-icon {
  background: #dfe5dc;
}
.a-post-body {
  padding: 0 76px 40px;
  max-width: 880px;
  font-size: 18px;
  line-height: 1.85;
}
.a-post-body p + p {
  margin-top: 20px;
}
.a-contact {
  padding-top: 60px;
  padding-bottom: 60px;
}
.a-contact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0 54px;
}
.a-contact h2 {
  font-size: 115px;
  font-weight: 500;
  line-height: 1.05;
}
.a-contact h2 em {
  display: block;
  color: var(--accent);
  font-size: 140px;
}
.a-contact-main > svg {
  width: 170px;
  height: 170px;
  stroke-width: 1;
  transition: transform 0.35s;
}
.a-contact-main:hover > svg {
  transform: translate(10px, -10px);
}
.a-contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.a-email {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.a-contact-bottom > span {
  font-size: 10px;
  color: #b8c1ba;
}
.a-footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
}
.a-footer > a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
}
.a-footer > a:first-child {
  font-weight: 700;
}
.a-footer span {
  color: #aeb8b0;
  font-weight: 500;
}
.a-footer > span {
  font-family: Instrument, Georgia, serif;
  font-style: italic;
  font-size: 22px;
}
@media (min-width: 1600px) {
  .astra-site {
    --gutter: 80px;
  }
  .a-hero h1 {
    font-size: 162px;
  }
  .a-hero-pre {
    font-size: 34px;
  }
  .a-hero-pre em {
    font-size: 44px;
  }
  .a-statement {
    font-size: 108px;
  }
  .a-statement em {
    font-size: 124px;
  }
  .a-ai-heading h2 {
    font-size: 80px;
  }
  .a-ai-heading h2 em {
    font-size: 110px;
  }
  .a-club h2 {
    font-size: 130px;
  }
}
@media (min-width: 2000px) {
  .astra-site {
    --gutter: max(80px, calc((100% - 1800px) / 2));
  }
  .a-hero h1 {
    font-size: 184px;
  }
  .a-portrait {
    object-position: center 30%;
  }
}
@media (max-width: 1200px) {
  .astra-site {
    --gutter: 36px;
  }
  .a-nav {
    gap: 18px;
  }
  .a-nav a {
    font-size: 12px;
  }
  .a-header {
    gap: 18px;
  }
  .a-hero h1 {
    font-size: 106px;
  }
  .a-hero-pre {
    font-size: 25px;
  }
  .a-statement {
    font-size: 76px;
  }
  .a-statement em {
    font-size: 90px;
  }
  .a-club h2 {
    font-size: 80px;
  }
  .a-club h2 svg {
    width: 70px;
    height: 70px;
  }
  .a-ai-heading h2 {
    font-size: 53px;
  }
  .a-ai-heading h2 em {
    font-size: 80px;
  }
  .a-total strong {
    font-size: 63px;
  }
  .a-social {
    padding: 22px 16px;
  }
  .a-social strong {
    font-size: 26px;
  }
  .a-contact h2 {
    font-size: 105px;
  }
  .a-work-row h3 {
    font-size: 25px;
  }
}
@media (max-width: 960px) {
  .a-header {
    height: 76px;
  }
  .a-brand {
    font-size: 14px;
  }
  .a-nav {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    top: 76px;
    padding: 24px var(--gutter) 32px;
    background: #080909;
    border-bottom: 1px solid #555f57;
    box-shadow: 0 30px 30px #0005;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .a-nav a {
    font-size: 22px;
    min-height: 57px;
    border-bottom: 1px solid #303831;
  }
  .a-nav a:after {
    display: none;
  }
  .a-nav-contact {
    margin-left: 0;
  }
  .a-menu {
    display: flex;
  }
  .a-header.is-open .a-nav {
    display: flex;
  }
  .a-header.is-open .a-menu-open {
    display: none;
  }
  .a-header.is-open .a-menu-close {
    display: block;
  }
  .a-language {
    border: 0;
    padding-left: 0;
  }
  .a-hero {
    height: 760px;
    min-height: 0;
    max-height: calc(93svh - 76px);
  }
  .a-hero h1 {
    font-size: 89px;
  }
  .a-hero-title {
    width: 70%;
  }
  .a-hero-pre {
    font-size: 24px;
  }
  .a-hero-pre em {
    font-size: 30px;
  }
  .a-hero-bottom > p {
    font-size: 18px;
  }
  .a-round-link {
    justify-self: end;
  }
  .a-round-link span {
    display: none;
  }
  .a-hero-coordinate {
    display: none;
  }
  .a-hero-bottom {
    grid-template-columns: 1fr auto;
  }
  .a-portrait {
    object-position: 65% 25%;
  }
  .a-intro-strip > span:nth-child(2) {
    display: none;
  }
  .a-statement {
    font-size: 65px;
  }
  .a-statement em {
    font-size: 76px;
  }
  .a-idea-grid,
  .a-ai-copy {
    grid-template-columns: 1fr 1.7fr;
    gap: 32px;
  }
  .a-lead {
    font-size: 21px;
  }
  .a-principles {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .a-section-title {
    font-size: 48px;
  }
  .a-section-title em {
    font-size: 61px;
  }
  .a-work-row {
    grid-template-columns: 30px 1fr 1fr 44px;
    gap: 18px;
  }
  .a-work-row h3 {
    font-size: 23px;
  }
  .a-ai-stage {
    height: 650px;
  }
  .a-ai-heading {
    max-width: 70%;
    top: 74px;
  }
  .a-ai-heading h2 {
    font-size: 52px;
  }
  .a-ai-heading h2 em {
    font-size: 74px;
  }
  .a-ai-watermark {
    font-size: 155px;
    top: 53%;
  }
  .a-club-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .a-club h2 {
    font-size: 90px;
  }
  .a-club-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .a-underlined-link {
    margin: 0;
    grid-column: 2;
  }
  .a-club-message {
    font-size: 28px;
  }
  .a-club-message em {
    font-size: 40px;
  }
  .a-total strong {
    font-size: 52px;
  }
  .a-audience-head {
    align-items: start;
  }
  .a-socials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .a-social {
    padding: 24px !important;
  }
  .a-social:nth-child(3) {
    border-right: 0;
  }
  .a-social:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
  .a-social strong {
    font-size: 32px;
  }
  .a-social:last-child {
    border-right: 1px solid var(--line);
  }
  .a-contact h2 {
    font-size: 86px;
  }
  .a-contact h2 em {
    font-size: 108px;
  }
  .a-contact-main > svg {
    width: 100px;
    height: 100px;
  }
  .a-email {
    font-size: 20px;
  }
  .a-blog-heading > p {
    max-width: 200px;
  }
}
@media (max-width: 600px) {
  .astra-site {
    --gutter: 22px;
  }
  .a-header {
    height: 72px;
  }
  .a-nav {
    top: 72px;
  }
  .a-header-actions {
    gap: 16px;
  }
  .a-brand {
    font-size: 13px;
  }
  .a-brand span {
    font-size: 9px;
  }
  .a-language {
    font-size: 11px;
    gap: 6px;
  }
  .a-menu {
    width: 40px;
    height: 40px;
  }
  .a-hero {
    height: 705px;
    max-height: none;
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .a-hero-top {
    font-size: 9px;
    max-width: 260px;
  }
  .a-hero-top > span:last-child {
    display: none;
  }
  .a-portrait {
    object-fit: cover;
    object-position: 69% top;
    height: 520px;
  }
  .a-hero:after {
    content: "";
    position: absolute;
    inset: 390px 0 0;
    background: linear-gradient(0deg, #050606 65%, transparent);
    z-index: -1;
    pointer-events: none;
  }
  .a-hero-title {
    width: 100%;
    padding-top: 244px;
  }
  .a-hero-pre {
    font-size: 24px;
    margin-bottom: 22px !important;
    gap: 8px;
  }
  .a-hero-pre em {
    font-size: 31px;
  }
  .a-hero h1 {
    font-size: 69px;
    line-height: 0.96;
  }
  .a-hero-bottom {
    padding-top: 22px;
    gap: 16px;
    align-items: center;
  }
  .a-hero-bottom > p {
    font-size: 16px;
    max-width: 265px;
    line-height: 1.55;
  }
  .a-round-link svg {
    width: 44px;
    height: 44px;
    padding: 12px;
  }
  .a-hero-vertical {
    right: 10px;
    top: 31%;
    font-size: 8px;
  }
  .a-intro-strip {
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 16px;
    align-items: center;
  }
  .a-intro-strip > span {
    font-size: 9px;
  }
  .a-intro-strip > a {
    font-size: 20px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: end;
    max-width: 175px;
  }
  .a-intro-strip > a > span {
    font-size: 9px;
    order: 3;
    flex-basis: 100%;
    text-align: right;
    margin-top: -6px;
  }
  .a-section {
    padding-top: 36px;
    padding-bottom: 56px;
  }
  .a-section-label {
    font-size: 10px;
    gap: 12px;
    align-items: start;
    padding-bottom: 30px;
  }
  .a-section-label > span:last-child {
    font-size: 8px;
    text-align: right;
    max-width: 165px;
    justify-content: end;
  }
  .a-statement {
    font-size: 40px;
    padding: 20px 0 38px;
    line-height: 1.15;
  }
  .a-statement em {
    font-size: 47px;
  }
  .a-idea-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 26px;
  }
  .a-small-signature {
    font-size: 10px;
  }
  .a-small-signature > span {
    font-size: 11px;
    max-width: none;
  }
  .a-lead {
    font-size: 20px;
    line-height: 1.6;
  }
  .a-principles {
    margin-top: 30px;
    gap: 26px;
    grid-template-columns: 1fr;
  }
  .a-principles p {
    font-size: 15px;
  }
  .a-work {
    padding-top: 8px;
  }
  .a-work .a-section-label {
    padding-top: 24px;
  }
  .a-section-title {
    font-size: 39px;
  }
  .a-section-title em {
    font-size: 49px;
  }
  .a-work-list {
    margin-top: 34px;
  }
  .a-work-row {
    grid-template-columns: 24px 1fr 44px;
    gap: 12px;
    padding: 26px 0;
  }
  .a-work-row h3 {
    font-size: 22px;
  }
  .a-work-row p {
    grid-column: 2/3;
    font-size: 14px;
    line-height: 1.75;
  }
  .a-work-row .a-row-number {
    align-self: start;
    padding-top: 6px;
    font-size: 10px;
  }
  .a-work-link {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }
  .a-ai-stage {
    height: 600px;
  }
  .a-ai-heading {
    top: 52px;
    max-width: calc(100% - 44px);
  }
  .a-ai-heading .a-kicker {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .a-ai-heading h2 {
    font-size: 41px;
    line-height: 1.1;
  }
  .a-ai-heading h2 em {
    font-size: 65px;
  }
  .a-ai-watermark {
    font-size: 91px;
    top: 55%;
    right: 22px;
  }
  .a-scene-controls {
    bottom: 18px;
  }
  .a-ai-copy {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }
  .a-topic-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 18px;
  }
  .a-topic-list > span {
    font-size: 12px;
    gap: 8px;
  }
  .a-topic-list small {
    font-size: 9px;
  }
  .a-ai-copy .a-kicker {
    font-size: 10px;
  }
  .a-ai-detail {
    font-size: 15px;
    line-height: 1.85;
  }
  .a-club-layout {
    padding-top: 14px;
    gap: 34px;
  }
  .a-club h2 {
    font-size: 65px;
  }
  .a-club h2 svg {
    width: 58px;
    height: 58px;
  }
  .a-club-copy {
    display: block;
  }
  .a-club-message {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 22px !important;
  }
  .a-club-message br {
    display: none;
  }
  .a-club-message em {
    font-size: 35px;
  }
  .a-club-copy > p:not(.a-club-message) {
    font-size: 15px;
  }
  .a-underlined-link {
    margin-top: 20px;
    font-size: 15px;
  }
  .a-audience-head {
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .a-total {
    text-align: left;
    margin-top: 30px;
  }
  .a-total strong {
    font-size: 60px;
  }
  .a-total > span {
    font-size: 10px;
    margin-top: 8px;
  }
  .a-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .a-social {
    padding: 22px 16px !important;
  }
  .a-social:nth-child(2n) {
    border-right: 0;
  }
  .a-social:nth-child(3) {
    border-right: 1px solid var(--line);
  }
  .a-social:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .a-social:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    border-right: 0;
  }
  .a-social:last-child > div {
    grid-column: 1/-1;
    margin-bottom: 12px;
  }
  .a-social:last-child strong {
    text-align: right;
    grid-row: 2;
    grid-column: 2;
  }
  .a-social:last-child .a-social-handle {
    margin: 0;
  }
  .a-social > div {
    margin-bottom: 22px;
  }
  .a-social h3 {
    font-size: 14px;
  }
  .a-social strong {
    font-size: 28px;
  }
  .a-social-handle {
    font-size: 10px;
  }
  .a-count-note {
    font-size: 10px;
    line-height: 1.7;
  }
  .a-blog-heading {
    display: block;
    margin: 10px 0 34px;
  }
  .a-blog-heading > p {
    max-width: 290px;
    font-size: 15px;
    margin-top: 24px;
  }
  .a-post summary {
    grid-template-columns: 20px 1fr 36px;
    gap: 12px;
    padding: 24px 0;
  }
  .a-post-category {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .a-post h3 {
    font-size: 18px;
    line-height: 1.45;
  }
  .a-post-icon {
    width: 36px;
    height: 36px;
  }
  .a-post-icon svg {
    width: 18px;
  }
  .a-post .a-row-number {
    font-size: 10px;
  }
  .a-post-body {
    padding: 0 0 30px 32px;
    font-size: 16px;
    line-height: 1.85;
  }
  .a-contact-main {
    padding: 22px 0 35px;
    gap: 12px;
    align-items: center;
  }
  .a-contact h2 {
    font-size: 54px;
  }
  .a-contact h2 em {
    font-size: 76px;
  }
  .a-contact-main > svg {
    width: 56px;
    height: 56px;
  }
  .a-contact-bottom {
    display: block;
    padding-top: 24px;
  }
  .a-email {
    font-size: 16px;
    gap: 12px;
    justify-content: space-between;
  }
  .a-contact-bottom > span {
    display: block;
    font-size: 9px;
    margin-top: 28px;
  }
  .a-footer {
    padding: 20px var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    font-size: 9px;
  }
  .a-footer > span {
    display: none;
  }
  .a-footer > a {
    gap: 8px;
    flex-wrap: wrap;
  }
  .a-footer > a:first-child {
    max-width: 140px;
  }
  .a-footer > a:last-child {
    font-size: 8px;
  }
  .a-footer > a svg {
    width: 14px;
  }
}
@media (max-width: 374px) {
  .astra-site {
    --gutter: 18px;
  }
  .a-hero h1 {
    font-size: 61px;
  }
  .a-statement {
    font-size: 35px;
  }
  .a-statement em {
    font-size: 42px;
  }
  .a-section-title {
    font-size: 35px;
  }
  .a-section-title em {
    font-size: 44px;
  }
  .a-club h2 {
    font-size: 60px;
  }
  .a-contact h2 {
    font-size: 47px;
  }
  .a-contact h2 em {
    font-size: 65px;
  }
  .a-email {
    font-size: 14px;
  }
  .a-ai-heading h2 {
    font-size: 37px;
  }
  .a-ai-heading h2 em {
    font-size: 58px;
  }
}
@media (max-width: 600px) and (max-height: 780px) {
  .a-hero {
    height: calc(94svh - 72px);
    min-height: 535px;
  }
  .a-portrait {
    height: 420px;
  }
  .a-hero-title {
    padding-top: 155px;
  }
  .a-hero:after {
    inset: 305px 0 0;
  }
  .a-hero h1 {
    font-size: 61px;
  }
  .a-hero-pre {
    font-size: 22px;
    margin-bottom: 16px !important;
  }
  .a-hero-bottom {
    padding-top: 20px;
  }
  .a-hero-bottom > p {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:has(.astra-site) {
    scroll-behavior: auto;
  }
  .astra-site * {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 600px) {
  .a-hero:after {
    inset: 280px 0 0;
    background: linear-gradient(180deg, transparent 0, #050606 100px);
  }
  .a-section-label {
    font-size: 11px;
  }
  .a-section-label > span:last-child {
    font-size: 9px;
  }
  .a-hero-top {
    font-size: 10px;
  }
  .a-footer {
    font-size: 10px;
  }
}
@media (max-width: 600px) and (max-height: 780px) {
  .a-hero:after {
    inset: 210px 0 0;
  }
}
@media (max-width: 960px) {
  html:has(.astra-site) {
    scroll-padding-top: 76px;
  }
}
@media (min-width: 601px) and (max-width: 960px) {
  .a-hero-bottom > p {
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  html:has(.astra-site) {
    scroll-padding-top: 72px;
  }
}
@media (max-width: 340px) {
  .a-hero h1 {
    font-size: 56px;
  }
  .a-ai-heading h2 {
    font-size: 32px;
  }
  .a-ai-heading h2 em {
    font-size: 54px;
  }
  .a-brand {
    font-size: 12px;
  }
  .a-header-actions {
    gap: 10px;
  }
}
@media (min-width: 961px) and (max-height: 700px) {
  .a-hero {
    min-height: 0;
    height: calc(94svh - 84px);
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .a-hero-title {
    padding-top: 12px;
  }
  .a-hero h1 {
    font-size: 100px;
  }
  .a-hero-pre {
    font-size: 22px;
    margin-bottom: 18px !important;
  }
  .a-hero-pre em {
    font-size: 28px;
  }
  .a-hero-bottom {
    padding-top: 20px;
  }
  .a-hero-bottom > p {
    font-size: 18px;
  }
}
@media (min-width: 601px) and (max-height: 560px) {
  .a-header {
    height: 64px;
  }
  .a-nav {
    top: 64px;
  }
  .a-hero {
    height: calc(94svh - 64px);
    min-height: 275px;
    max-height: none;
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .a-hero-title {
    padding-top: 8px;
  }
  .a-hero h1 {
    font-size: 64px;
  }
  .a-hero-pre {
    font-size: 18px;
    margin-bottom: 12px !important;
  }
  .a-hero-pre em {
    font-size: 24px;
  }
  .a-hero-bottom {
    padding-top: 12px;
  }
  .a-hero-bottom > p {
    font-size: 14px;
    max-width: 310px;
  }
  .a-hero-top {
    font-size: 9px;
  }
  .a-round-link svg {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .a-portrait {
    object-position: 75% 0;
  }
  html:has(.astra-site) {
    scroll-padding-top: 64px;
  }
}
