:root {
  --sea: #228358;
  --sea-deep: #1a6644;
  --tomato: #c83b3b;
  --jasmine: #f4d58d;
  --jasmine-deep: #e8b94a;
  --jet: #2f3a42;
  --ink: #1c2429;
  --parchment: #f4f1ec;
  --parchment-deep: #ece7d8;
  --rule: rgba(47, 58, 66, 0.14);
  --rule-dark: rgba(244, 241, 236, 0.16);
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --gutter: 72px;
  --section-pad: 120px;
  --radius-card: 10px;
  --radius-btn: 8px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1c2429;
  background: #f4f1ec;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p {
  margin: 0;
}
button {
  cursor: pointer;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
}
.at-section {
  padding: 120px 72px;
}
.at-section--inner {
  max-width: 1800px;
  margin: 0 auto;
}
.at-section--sm {
  padding: 88px 72px;
}
.at-section--border-b {
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-section--border-b-dark {
  border-bottom: 1px solid rgba(244, 241, 236, 0.16);
}
.at-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}
.at-grid-2--end {
  align-items: end;
}
.at-grid-2--start {
  align-items: start;
}
.at-grid-2--wide {
  grid-template-columns: 1.4fr 1fr;
}
.at-grid-2--wider {
  grid-template-columns: 1fr 1.4fr;
}
.at-grid-2--hero {
  grid-template-columns: 1.2fr 1fr;
}
.at-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1800px;
  margin: 0 auto;
}
.at-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1800px;
  margin: 0 auto;
}
.bg-parchment {
  background: #f4f1ec;
  color: #1c2429;
}
.bg-ink {
  background: #1c2429;
  color: #f4f1ec;
}
.bg-sea {
  background: #228358;
  color: #fff;
}
.bg-tomato {
  background: #c83b3b;
  color: #fff;
}
.bg-jasmine {
  background: #f4d58d;
  color: #1c2429;
}
.bg-jet {
  background: #2f3a42;
  color: #fff;
}
.at-header {
  display: flex;
  align-items: center;
  height: 86px;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
  background: transparent;
  position: relative;
  z-index: 100;
  padding: 0 72px;
}
.at-header .at-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
.at-header .at-header__right {
  display: flex;
  align-items: center;
}
.at-header .at-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.at-header .at-header__logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.at-header .at-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 8px;
}
.at-header .at-header__nav li {
  display: flex;
  align-items: center;
}
.at-header .at-header__nav-link {
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #1c2429;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: all 0.15s ease;
}
.at-header .at-header__nav-link:hover,
.at-header .at-header__nav-link--active {
  color: #1c2429;
  font-weight: 600;
  border-bottom-color: #228358;
}
.at-header .at-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #228358;
  color: #fff;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 16px;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.at-header .at-header__cta:hover {
  background: #1a6644;
  color: #fff;
}
.at-header--dark {
  border-bottom-color: rgba(244, 241, 236, 0.16);
}
.at-header--dark .at-header__nav-link {
  color: rgba(244, 241, 236, 0.85);
}
.at-header--dark .at-header__nav-link:hover,
.at-header--dark .at-header__nav-link--active {
  color: #fff;
  border-bottom-color: #f4d58d;
}
.at-header--dark .at-header__cta {
  background: rgba(244, 241, 236, 0.15);
  color: #fff;
}
.at-header--dark .at-header__cta:hover {
  background: rgba(244, 241, 236, 0.25);
}
.at-header--sea {
  background: #228358;
}
.at-header--ink {
  background: #1c2429;
}
.at-header--jet {
  background: #2f3a42;
}
.at-header--tomato {
  background: #c83b3b;
}
.at-footer {
  background: #1c2429;
  color: #f4f1ec;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
}
.at-footer__main {
  padding: 80px 72px 48px;
}
.at-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: 1800px;
  margin: 0 auto;
  align-items: start;
}
.at-footer__col {
  display: flex;
  flex-direction: column;
}
.at-footer__brand-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}
.at-footer__brand-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.75);
  max-width: 340px;
  margin: 0;
}
.at-footer__col-title {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  font-weight: 600;
  margin-bottom: 16px;
}
.at-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.at-footer__col-links li {
  font-size: 14px;
}
.at-footer__col-links a {
  color: rgba(244, 241, 236, 0.85);
  text-decoration: none;
  transition: all 0.15s ease;
}
.at-footer__col-links a:hover {
  color: #f4f1ec;
}
.at-footer__col-links .at-footer__divider {
  color: rgba(244, 241, 236, 0.3);
  pointer-events: none;
}
.at-footer__bar {
  padding: 24px 72px;
  border-top: 1px solid rgba(244, 241, 236, 0.16);
}
.at-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}
.at-footer__bar-copy,
.at-footer__bar-contact {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
}
.section--light {
  background-color: #ffffff;
  color: #1c2429;
}
.section--parchment {
  background-color: #f4f1ec;
  color: #1c2429;
}
.section--jasmine {
  background-color: #f4d58d;
  color: #1c2429;
}
.section--sea {
  background-color: #228358;
  color: #ffffff;
}
.section--ink {
  background-color: #1c2429;
  color: #ffffff;
}
.section--jet {
  background-color: #2f3a42;
  color: #ffffff;
}
.section--tomato {
  background-color: #c83b3b;
  color: #ffffff;
}
.accent-jasmine strong {
  color: #f4d58d;
  font-weight: inherit;
}
.accent-jasmine em {
  color: #c83b3b;
  font-style: normal;
}
.accent-jasmine .at-eyebrow,
.accent-jasmine .at-tag {
  color: #f4d58d;
}
.accent-jasmine .at-tag::before,
.accent-jasmine .at-eyebrow::before {
  background-color: #f4d58d;
}
.accent-jasmine .at-stat__num {
  color: #f4d58d;
}
.accent-jasmine .at-checklist__icon {
  color: #f4d58d;
  border-color: #f4d58d;
}
.accent-jasmine .at-card__num,
.accent-jasmine .at-step__num {
  color: #f4d58d;
  border-color: #f4d58d;
}
.accent-jasmine .at-divider {
  border-color: #f4d58d;
}
.accent-jasmine a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a) {
  color: #f4d58d;
}
.accent-jasmine a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a):hover {
  color: #f7e0aa;
}
.accent-sea strong {
  color: #228358;
  font-weight: inherit;
}
.accent-sea em {
  color: #c83b3b;
  font-style: normal;
}
.accent-sea .at-eyebrow,
.accent-sea .at-tag {
  color: #228358;
}
.accent-sea .at-tag::before,
.accent-sea .at-eyebrow::before {
  background-color: #228358;
}
.accent-sea .at-stat__num {
  color: #228358;
}
.accent-sea .at-checklist__icon {
  color: #f4f1ec;
  border-color: #228358;
}
.accent-sea .at-card__num,
.accent-sea .at-step__num {
  color: #228358;
  border-color: #228358;
}
.accent-sea .at-divider {
  border-color: #228358;
}
.accent-sea a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a) {
  color: #228358;
}
.accent-sea a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a):hover {
  color: #1a6242;
}
.accent-tomato strong {
  color: #c83b3b;
  font-weight: inherit;
}
.accent-tomato em {
  color: #f4d58d;
  font-style: normal;
}
.accent-tomato .at-eyebrow,
.accent-tomato .at-tag {
  color: #c83b3b;
}
.accent-tomato .at-tag::before,
.accent-tomato .at-eyebrow::before {
  background-color: #c83b3b;
}
.accent-tomato .at-stat__num {
  color: #c83b3b;
}
.accent-tomato .at-checklist__icon {
  color: #f4f1ec;
  border-color: #c83b3b;
}
.accent-tomato .at-card__num,
.accent-tomato .at-step__num {
  color: #c83b3b;
  border-color: #c83b3b;
}
.accent-tomato .at-divider {
  border-color: #c83b3b;
}
.accent-tomato a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a) {
  color: #c83b3b;
}
.accent-tomato a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a):hover {
  color: #962c2c;
}
.bg-ink.accent-tomato .at-eyebrow,
.bg-ink.accent-tomato .at-tag {
  color: #e87878;
}
.bg-ink.accent-tomato .at-tag::before,
.bg-ink.accent-tomato .at-eyebrow::before {
  background-color: #e87878;
}
.bg-ink.accent-tomato .at-stat__num {
  color: #e87878;
}
.bg-ink.accent-tomato .at-checklist__icon {
  color: #e87878;
  border-color: #e87878;
}
.bg-ink.accent-tomato .at-card__num,
.bg-ink.accent-tomato .at-step__num,
.bg-ink.accent-tomato .at-problem-card__num {
  color: #e87878;
  border-color: #e87878;
}
.bg-ink.accent-tomato .at-divider {
  border-color: #e87878;
}
.bg-ink.accent-tomato a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a) {
  color: #e87878;
}
.bg-ink.accent-tomato a:not(.btn):not(.at-header__cta):not(.at-footer__col-links a):hover {
  color: #ed9393;
}
.at-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.at-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.at-h1 {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 7.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.at-h2 {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.at-h3 {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.at-lead {
  font-size: 19px;
  line-height: 1.55;
}
.at-lead--white {
  font-size: 21px;
  line-height: 1.5;
  opacity: 0.92;
  color: #fff;
}
.at-lead--sm {
  font-size: 16px;
}
.at-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  padding: 18px 30px;
  border: none;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.at-btn:hover {
  opacity: 0.88;
}
.at-btn--dark {
  background: #1c2429;
  color: #fff;
}
.at-btn--sea {
  background: #228358;
  color: #fff;
}
.at-btn--sm {
  font-size: 13px;
  padding: 12px 20px;
}
.at-btn--lg {
  font-size: 16px;
  padding: 20px 32px;
}
.at-btn-ghost {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid #f4d58d;
  padding-bottom: 4px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.at-slot {
  width: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.at-slot--light {
  background: repeating-linear-gradient(135deg, #e6e0cf 0 14px, #ece6d6 14px 28px);
  border: 1px solid #d6cfba;
  color: rgba(47, 58, 66, 0.55);
  aspect-ratio: 5/4;
}
.at-slot--dark {
  background: repeating-linear-gradient(135deg, #354249 0 14px, #2f3a42 14px 28px);
  border: 1px solid #3e4a51;
  color: rgba(244, 241, 236, 0.7);
  aspect-ratio: 4/5;
}
.at-slot--wide {
  aspect-ratio: 16/11;
}
.at-slot--video {
  aspect-ratio: 16/9;
}
.at-slot--hero {
  aspect-ratio: 4/3;
}
.at-slot--square {
  aspect-ratio: 1/1;
}
.at-slot--feat {
  aspect-ratio: 16/10;
}
.at-slot--feat-sm {
  aspect-ratio: 4/3;
}
.at-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.at-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
}
.at-checklist__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #228358;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.accent-jasmine .at-checklist__icon {
  background: #f4d58d;
  color: #1c2429;
}
.at-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
}
.at-stat__num {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.at-stat__label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.75;
}
.at-logo-strip {
  padding: 32px 72px;
  background: #f4f1ec;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}
.at-logo-strip__label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.55);
  font-weight: 600;
  white-space: nowrap;
}
.at-logo-strip__name {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(28, 36, 41, 0.42);
  letter-spacing: -0.01em;
}
.at-problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1800px;
  margin: 56px auto 0;
}
.at-problem-card {
  padding-top: 24px;
  border-top: 2px solid;
}
.accent-tomato .at-problem-card {
  border-top-color: #c83b3b;
}
.accent-sea .at-problem-card {
  border-top-color: #228358;
}
.accent-jasmine .at-problem-card {
  border-top-color: #f4d58d;
}
.at-problem-card__num {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.accent-tomato .at-problem-card__num {
  color: #c83b3b;
}
.accent-sea .at-problem-card__num {
  color: #228358;
}
.accent-jasmine .at-problem-card__num {
  color: #f4d58d;
}
.at-problem-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.at-problem-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.7;
}
.at-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.at-step-card {
  background: #f4f1ec;
  padding: 28px;
  border-radius: 10px;
  color: #1c2429;
}
.at-step-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.at-step-card__num {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #228358;
}
.at-step-card__arrow {
  color: #228358;
  font-size: 18px;
}
.at-step-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.at-step-card__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(28, 36, 41, 0.7);
}
.at-setup-badge {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #1c2429;
  color: #f4d58d;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.at-feat-grid {
  display: grid;
  gap: 20px;
}
.at-feat-grid--a {
  grid-template-columns: 1.4fr 1fr 1fr;
}
.at-feat-grid--b {
  grid-template-columns: 1fr 1fr 1.4fr;
}
.at-feat-card {
  padding: 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.at-feat-card--light {
  background: #f4f1ec;
  border: 1px solid rgba(47, 58, 66, 0.14);
  min-height: 320px;
}
.at-feat-card--big {
  min-height: 420px;
}
.at-feat-card--sea {
  background: #228358;
  color: #fff;
}
.at-feat-card--ink {
  background: #1c2429;
  color: #f4f1ec;
}
.at-feat-card--tomato {
  background: #c83b3b;
  color: #fff;
}
.at-feat-card__accent {
  position: absolute;
  top: 0;
  left: 28px;
  width: 32px;
  height: 4px;
  border-radius: 0 0 4px 4px;
}
.at-feat-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.at-feat-card__body {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.78;
}
.at-standout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.at-standout-card {
  padding: 24px;
  border-radius: 10px;
  background: rgba(244, 241, 236, 0.04);
  border: 1px solid rgba(244, 241, 236, 0.16);
}
.at-standout-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.at-standout-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #f4f1ec;
}
.at-standout-card__body {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.72;
  color: #f4f1ec;
}
.at-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.at-audience-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.at-audience-card__num {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.accent-jasmine .at-audience-card__num {
  color: #f4d58d;
}
.accent-sea .at-audience-card__num {
  color: #228358;
}
.accent-tomato .at-audience-card__num {
  color: #c83b3b;
}
.at-audience-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.at-audience-card__body {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.85;
}
.at-faq-list {
  margin-top: 0;
}
.at-faq-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-faq-item:first-child {
  border-top: 1px solid rgba(47, 58, 66, 0.14);
}
.at-faq-item--highlight {
  background: rgba(244, 213, 141, 0.3);
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  border-top: 1px solid rgba(47, 58, 66, 0.14);
}
.at-faq-item__highlight-star {
  color: #c83b3b;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
}
.at-faq-item__q {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.at-faq-item__a {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(28, 36, 41, 0.82);
}
.at-cta {
  padding: 120px 72px;
}
.at-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.at-cta__headline {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 820px;
}
.at-cta__sub {
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 540px;
}
.at-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.at-cta__or {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.at-hero-badge {
  position: absolute;
  bottom: -28px;
  left: -36px;
  background: #f4d58d;
  color: #1c2429;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}
.at-hero-badge__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #228358;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.at-hero-badge__title {
  font-size: 14px;
  font-weight: 700;
}
.at-hero-badge__meta {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.7;
}
.at-jump-nav {
  padding: 18px 24px;
  background: #fff;
  border: 1px solid rgba(47, 58, 66, 0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.at-jump-nav__label {
  color: rgba(28, 36, 41, 0.5);
  text-transform: uppercase;
  font-weight: 600;
}
.at-jump-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.at-jump-nav__num {
  color: #228358;
  font-weight: 700;
}
.at-jump-nav__sep {
  color: rgba(28, 36, 41, 0.3);
  margin-left: 6px;
}
.at-stage {
  padding: 100px 72px;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-stage--dark {
  border-bottom-color: rgba(244, 241, 236, 0.16);
}
.at-stage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}
.at-stage__inner--flip {
  direction: rtl;
}
.at-stage__inner--flip > * {
  direction: ltr;
}
.at-stage__num-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.at-stage__num {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #228358;
  line-height: 1;
  letter-spacing: -0.03em;
}
.at-stage__num--light {
  color: #f4d58d;
}
.at-stage__num-label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #228358;
}
.at-stage__num-label--light {
  color: #f4d58d;
}
.at-stage__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.at-stage__lede {
  font-size: 19px;
  line-height: 1.55;
  opacity: 0.82;
  margin: 0 0 32px;
  max-width: 520px;
}
.at-gap-item {
  display: grid;
  grid-template-columns: 12px 1fr 1.5fr;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-gap-item__dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  margin-top: 8px;
}
.at-gap-item__label {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.at-gap-item__sub {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.55);
  font-weight: 600;
}
.at-gap-item__body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(28, 36, 41, 0.82);
}
.at-principle-card {
  padding: 28px;
  border-radius: 10px;
  background: rgba(244, 241, 236, 0.04);
  border: 1px solid rgba(244, 241, 236, 0.16);
}
.at-principle-card__num {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.at-principle-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #f4f1ec;
}
.at-principle-card__body {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.72;
  color: #f4f1ec;
}
.at-founder-quote {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #fff;
}
.at-founder-credit {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4d58d;
  margin-bottom: 28px;
  font-weight: 600;
}
.at-team-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(47, 58, 66, 0.14);
  overflow: hidden;
}
.at-team-card__info {
  padding: 24px;
}
.at-team-card__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.at-team-card__name {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.at-team-card__role {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #228358;
  margin-top: 6px;
  font-weight: 700;
}
.at-team-card__bio {
  font-size: 14px;
  color: rgba(28, 36, 41, 0.7);
  margin-top: 12px;
  line-height: 1.55;
}
.at-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  padding: 88px 72px 96px;
  max-width: 1800px;
  margin: 0 auto;
}
.at-what-happens {
  background: #f4d58d;
  color: #1c2429;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 32px;
}
.at-what-happens__title {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.at-what-happens ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.7;
}
.at-contact-meta {
  display: grid;
  gap: 14px;
  font-size: 14px;
  color: rgba(28, 36, 41, 0.78);
}
.at-contact-meta__row {
  display: flex;
  gap: 16px;
}
.at-contact-meta__key {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #228358;
  font-weight: 700;
  width: 70px;
  flex-shrink: 0;
  padding-top: 1px;
}
.at-form {
  background: #fff;
  border: 1px solid rgba(47, 58, 66, 0.14);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  gap: 22px;
  box-shadow: 0 24px 60px -32px rgba(28, 36, 41, 0.25);
  height: fit-content;
}
.at-form__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.at-form__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.at-form__meta {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.55);
  font-weight: 600;
}
.at-form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.at-field {
  display: grid;
  gap: 8px;
}
.at-field label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.7);
  font-weight: 600;
}
.at-field input,
.at-field select,
.at-field textarea {
  border: 1px solid rgba(47, 58, 66, 0.14);
  border-radius: 6px;
  background: #f4f1ec;
  padding: 14px 16px;
  font-size: 15px;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  color: #1c2429;
  width: 100%;
  appearance: none;
  outline: none;
  transition: all 0.15s ease;
}
.at-field input:focus,
.at-field select:focus,
.at-field textarea:focus {
  border-color: #228358;
}
.at-field textarea {
  min-height: 110px;
  resize: vertical;
}
.at-form__disclaimer {
  font-size: 12px;
  color: rgba(28, 36, 41, 0.55);
  text-align: center;
  line-height: 1.5;
}
.at-article-hero {
  padding: 88px 72px 60px;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-category-strip {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-category-strip__label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.5);
  margin-right: 16px;
  font-weight: 600;
}
.at-cat-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(47, 58, 66, 0.14);
  color: #1c2429;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.at-cat-pill:hover,
.at-cat-pill--active {
  background: #1c2429;
  color: #f4f1ec;
  border-color: #1c2429;
  font-weight: 600;
}
.at-featured-article {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 72px 80px;
}
.at-featured-article__badge {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 24px;
  background: #c83b3b;
  color: #fff;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
}
.at-featured-article__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.at-featured-article__excerpt {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(28, 36, 41, 0.75);
  margin: 0 0 28px;
}
.at-featured-article__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.at-featured-article__readtime {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.6);
  font-weight: 600;
}
.at-articles-grid {
  padding: 40px 72px 120px;
}
.at-articles-grid__header {
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.at-articles-grid__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.at-articles-grid__count {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.5);
  font-weight: 600;
}
.at-article-card {
  display: flex;
  flex-direction: column;
}
.at-article-card__img-wrap {
  position: relative;
}
.at-article-card__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.at-article-card__content {
  margin-top: 18px;
}
.at-article-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.at-article-card__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(28, 36, 41, 0.7);
  margin: 0 0 14px;
}
.at-article-card__readtime {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.55);
  font-weight: 600;
}
.at-single {
  max-width: 740px;
  margin: 0 auto;
  padding: 80px 72px;
}
.at-single__cat {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #228358;
  font-weight: 700;
  margin-bottom: 16px;
}
.at-single__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.at-single__meta {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.55);
  font-weight: 600;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
}
.at-single__content {
  font-size: 18px;
  line-height: 1.7;
  color: #1c2429;
}
.at-single__content h2 {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
}
.at-single__content h3 {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
}
.at-single__content p {
  margin: 0 0 24px;
}
.at-single__content ul,
.at-single__content ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.at-single__content li {
  margin-bottom: 8px;
}
.at-single__content img {
  border-radius: 10px;
}
.at-single-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 72px 120px;
}
.at-single-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.at-sidebar-block {
  padding-top: 24px;
  border-top: 1px solid rgba(47, 58, 66, 0.14);
}
.at-sidebar-block__label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(28, 36, 41, 0.45);
  margin-bottom: 14px;
}
.at-sidebar-meta {
  display: grid;
  gap: 10px;
}
.at-sidebar-meta__row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  line-height: 1.4;
}
.at-sidebar-meta__row-key {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #228358;
  width: 56px;
  flex-shrink: 0;
  padding-top: 1px;
}
.at-sidebar-article {
  padding: 14px 0;
  border-bottom: 1px solid rgba(47, 58, 66, 0.14);
  display: grid;
  gap: 6px;
}
.at-sidebar-article:first-child {
  border-top: 1px solid rgba(47, 58, 66, 0.14);
}
.at-sidebar-article__cat {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #228358;
}
.at-sidebar-article__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #1c2429;
  text-decoration: none;
  transition: all 0.15s ease;
}
.at-sidebar-article__title:hover {
  color: #228358;
}
.at-sidebar-article__meta {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 36, 41, 0.45);
  font-weight: 600;
}
.at-sidebar-cta {
  background: #228358;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: grid;
  gap: 12px;
}
.at-sidebar-cta__label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.at-sidebar-cta__headline {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.at-sidebar-cta__link {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.at-sidebar-cta__link:hover {
  background: rgba(255, 255, 255, 0.25);
}
.at-single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(47, 58, 66, 0.14);
}
.at-single-nav__label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(28, 36, 41, 0.45);
  margin-bottom: 8px;
}
.at-single-nav__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1c2429;
  text-decoration: none;
  transition: all 0.15s ease;
}
.at-single-nav__title:hover {
  color: #228358;
}
.at-single-nav__right {
  text-align: right;
}
.at-legal-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.at-legal-coming-soon {
  background: #f4d58d;
  color: #1c2429;
  padding: 48px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.at-legal-coming-soon__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1c2429;
  color: #f4d58d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.at-legal-coming-soon__tag {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c83b3b;
  font-weight: 700;
}
.at-legal-coming-soon__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 480px;
}
.at-legal-coming-soon__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(28, 36, 41, 0.78);
  max-width: 540px;
}
.at-legal-coming-soon__contact {
  font-size: 14px;
  font-weight: 600;
}
.at-legal-coming-soon__contact a {
  color: #228358;
}
.at-legal-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.at-legal-preview-card {
  background: #fff;
  border: 1px solid rgba(47, 58, 66, 0.14);
  border-radius: 10px;
  padding: 24px;
}
.at-legal-preview-card__badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  color: #fff;
  margin-bottom: 14px;
}
.at-legal-preview-card__title {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.at-legal-preview-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(28, 36, 41, 0.72);
}
.at-changelog-entry {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 40px 0;
}
.at-changelog-entry__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.at-changelog-entry__tag--major {
  background: #228358;
  color: #fff;
}
.at-changelog-entry__tag--minor {
  background: #ece7d8;
  color: #1c2429;
}
.at-changelog-entry__version {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #1c2429;
}
.at-changelog-entry__date {
  margin-top: 10px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(28, 36, 41, 0.6);
}
.at-changelog-entry__label {
  margin-top: 4px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #228358;
}
.at-changelog-entry__headline {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.at-changelog-entry__summary {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(28, 36, 41, 0.78);
  margin: 0 0 24px;
}
.at-changelog-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.at-changelog-items li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  font-size: 14.5px;
  line-height: 1.55;
}
.at-changelog-badge {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  text-align: center;
  border-radius: 3px;
  font-weight: 700;
  height: fit-content;
}
.at-changelog-badge--new {
  background: rgba(34, 131, 88, 0.12);
  color: #228358;
}
.at-changelog-badge--improved {
  background: rgba(244, 213, 141, 0.4);
  color: #8a6a1f;
}
.at-changelog-badge--fixed {
  background: rgba(200, 59, 59, 0.12);
  color: #c83b3b;
}
