.heading-font {
  font-family: "Catamaran", "Helvetica", "Arial", "sans-serif";
  font-weight: 200;
  letter-spacing: 1px;
}

.body-font {
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
}

.alt-font {
  font-family: "Lato", "Helvetica", "Arial", "sans-serif";
  text-transform: uppercase;
  letter-spacing: 2px;
}

html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  font-family: "Muli", "Helvetica", "Arial", "sans-serif";
}

a {
  transition: color 0.35s, background-color 0.35s, border-color 0.35s;
  color: #fdcc52;
}
a:hover, a:focus {
  color: #fcbd20;
}

hr {
  max-width: 100px;
  margin: 25px auto 0;
  border-width: 1px;
  border-color: rgba(34, 34, 34, 0.1);
}
hr.light {
  border-color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Catamaran", "Helvetica", "Arial", "sans-serif";
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 50px;
}

p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

ol, ul {
  margin-bottom: 20px;
}

li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

header {
  position: relative;
  width: 100%;
  height: 80%;
  overflow-y: hidden;
  background: url("../img/bg-pattern.png"), #7b4397;
  /* fallback for old browsers */
  background: url("../img/bg-pattern.png"), -webkit-linear-gradient(to left, #7b4397, #dc2430);
  /* Chrome 10-25, Safari 5.1-6 */
  background: url("../img/bg-pattern.png"), linear-gradient(to left, #7b4397, #dc2430);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
}
header .header-content {
  text-align: center;
  padding: 100px 0 50px;
  position: relative;
  z-index: 1;
}
header .header-content .header-content-inner {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
header .header-content .header-content-inner h1 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 30px;
}
header .header-content .header-content-inner .list-badges {
  margin-bottom: 25px;
}
header .header-content .header-content-inner .list-badges img {
  height: 50px;
  margin-bottom: 25px;
}
header .device-container {
  max-width: 300px;
  margin: 0 auto 100px;
}
header .device-container .screen img {
  border-radius: 3px;
}

header.full {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
header.full .overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  header {
    height: 60%;
  }
  header .header-content {
    text-align: left;
    padding: 0;
    height: 80vh;
  }
  header .header-content .header-content-inner {
    max-width: none;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  header .header-content .header-content-inner h1 {
    font-size: 35px;
  }
  header .device-container {
    max-width: none;
    max-height: 0vh;
    margin: 100px auto 0;
  }
}
@media (min-width: 992px) {
  header .header-content .header-content-inner h1 {
    font-size: 50px;
  }
}
section {
  padding: 100px 0;
}
section h2 {
  font-size: 50px;
}
section.download {
  padding: 150px 0;
  position: relative;
}
section.download h2 {
  margin-top: 0;
  font-size: 50px;
}
section.download .badges .badge-link {
  display: block;
  margin-bottom: 25px;
}
section.download .badges .badge-link:last-child {
  margin-bottom: 0;
}
section.download .badges .badge-link img {
  height: 60px;
}
section.features .section-heading {
  margin-bottom: 100px;
}
section.features .section-heading h2 {
  margin-top: 0;
}
section.features .section-heading p {
  margin-bottom: 0;
}
section.features .section-post-heading {
  margin-bottom: 100px;
}
section.features .section-post-heading h2 {
  margin-top: 0;
}
section.features .section-post-heading p {
  margin-bottom: 0;
}
section.features .device-container, section.features .feature-item {
  max-width: 300px;
  margin: 0 auto;
}
section.features .device-container {
  margin-bottom: 100px;
}
section.features .feature-item {
  text-align: center;
  margin-bottom: 100px;
}
section.features .feature-item h3 {
  font-size: 30px;
}
section.features .feature-item i {
  font-size: 80px;
  background: -webkit-linear-gradient(to left, #7b4397, #dc2430);
  background: linear-gradient(to left, #7b4397, #dc2430);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.cta {
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center;
  background-image: url("../img/bg-cta.jpg");
  padding: 250px 0;
}
section.cta .cta-content {
  position: relative;
  z-index: 1;
}
section.cta .cta-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: white;
  max-width: 450px;
  font-size: 50px;
}
section.cta .overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
section.app-header {
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center;
  padding: 250px 0;
}
section.app-header .app-content {
  position: relative;
  z-index: 1;
}
section.app-header .app-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: white;
  max-width: 650px;
  font-size: 50px;
}
section.app-header .app-content h2.no-margin {
  margin: 0;
  max-width: none;
}
section.app-header .app-content p {
  padding-top: 25px;
  color: white;
}
section.app-header .overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
section.app-header .overlay-light {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
}
section.app-header-small {
  padding: 150px 0;
}
section.cta-donate {
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center;
  background-image: url("../img/donate.jpg");
  padding: 250px 0;
}
section.cta-donate .cta-content-donate {
  position: relative;
  z-index: 1;
}
section.cta-donate .cta-content-donate h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: white;
  max-width: 450px;
  font-size: 70px;
}
section.cta-donate .overlay-donate {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
section.contact {
  text-align: center;
}
section.contact h2 {
  margin-top: 0;
  margin-bottom: 25px;
}
section.contact h2 i {
  color: #dd4b39;
}
section.contact ul.list-social {
  margin-bottom: 0;
}
section.contact ul.list-social li a {
  display: block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  font-size: 40px;
  border-radius: 100%;
  color: white;
}
section.contact ul.list-social li.social-twitter a {
  background-color: #1da1f2;
}
section.contact ul.list-social li.social-twitter a:hover {
  background-color: #0d95e8;
}
section.contact ul.list-social li.social-facebook a {
  background-color: #3b5998;
}
section.contact ul.list-social li.social-facebook a:hover {
  background-color: #344e86;
}
section.contact ul.list-social li.social-google-plus a {
  background-color: #dd4b39;
}
section.contact ul.list-social li.social-google-plus a:hover {
  background-color: #d73925;
}

@media (min-width: 768px) {
  section.download .badges .badge-link {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  section.download h2 {
    font-size: 70px;
  }
}
@media (min-width: 992px) {
  section.features .device-container {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  section.features .device-container, section.features .feature-item {
    max-width: none;
  }
}
@media (min-width: 768px) {
  section.cta .cta-content h2 {
    font-size: 80px;
  }
}
footer {
  background-color: #222222;
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
footer p {
  font-size: 12px;
  margin: 0;
}
footer ul {
  margin-bottom: 0;
}
footer ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
footer ul li a:hover, footer ul li a:focus, footer ul li a:active, footer ul li a.active {
  text-decoration: none;
}

.bg-primary {
  background: #fdcc52;
  background: -webkit-linear-gradient(#fdcc52, #fdc539);
  background: linear-gradient(#fdcc52, #fdc539);
}

.text-primary {
  color: #fdcc52;
}

.no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.btn-outline {
  color: white;
  border-color: white;
  border: 1px solid;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
  color: white;
  background-color: #fdcc52;
  border-color: #fdcc52;
}

.btn {
  font-family: "Lato", "Helvetica", "Arial", "sans-serif";
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 300px;
}

.btn-xl {
  padding: 15px 45px;
  font-size: 11px;
}

.btn-download {
  padding: 15px 35px;
  font-size: 14px;
  margin-right: 20px;
}

.download-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 18px;
}

.download-badge {
  max-width: 18px;
  flex: 0 0 18px;
  display: block;
}

.download-label {
  display: block;
  padding-left: 8px;
}

::-moz-selection, ::selection {
  color: white;
  text-shadow: none;
  background: #222222;
}

img::selection, img::-moz-selection {
  color: white;
  background: transparent;
}

body {
  webkit-tap-highlight-color: #222222;
}

.no-padding {
  padding: 0;
}

.portfolio-box {
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto;
}
.portfolio-box .portfolio-box-caption {
  color: white;
  opacity: 0;
  display: block;
  background: rgba(253, 204, 82, 0.9);
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: color 0.35s, background-color 0.35s, border-color 0.35s;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  padding: 0 15px;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  font-size: 18px;
}
.portfolio-box:hover .portfolio-box-caption {
  opacity: 1;
}
@media (min-width: 768px) {
  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    font-size: 16px;
  }
  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 22px;
  }
}

.intro-header {
  background: no-repeat center center;
  background-color: #808080;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  margin-bottom: 50px;
}
.intro-header .site-heading, .intro-header .post-heading, .intro-header .page-heading {
  padding: 100px 0 50px;
  color: white;
}
.intro-header .site-heading, .intro-header .page-heading {
  text-align: center;
}
.intro-header .site-heading h1, .intro-header .page-heading h1 {
  margin-top: 0;
  font-size: 50px;
}
.intro-header .site-heading .subheading, .intro-header .page-heading .subheading {
  font-size: 24px;
  line-height: 1.1;
  display: block;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 10px 0 0;
}
.intro-header .post-heading h1 {
  font-size: 35px;
}
.intro-header .post-heading .subheading, .intro-header .post-heading .meta {
  line-height: 1.1;
  display: block;
}
.intro-header .post-heading .subheading {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  margin: 10px 0 30px;
  font-weight: 600;
}
.intro-header .post-heading .meta {
  font-family: "Lora", "Times New Roman", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
}
.intro-header .post-heading .meta a {
  color: white;
}

@media only screen and (min-width: 768px) {
  .intro-header .site-heading, .intro-header .post-heading, .intro-header .page-heading {
    padding: 150px 0;
  }
}
@media only screen and (min-width: 768px) {
  .intro-header .site-heading h1, .intro-header .page-heading h1 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .intro-header .post-heading h1 {
    font-size: 55px;
  }
  .intro-header .post-heading .subheading {
    font-size: 30px;
  }
}
.appicon img:hover, .appicon img:focus {
  cursor: pointer;
}
.appicon p {
  padding-top: 12px;
  height: 40px;
  line-height: 1.2;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.video-responsive-16-10 {
  padding-bottom: 62.5%;
}

.video-responsive-4-3 {
  padding-bottom: 75%;
}

.caption {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

:root {
  --ink: #111116;
  --ink-soft: #5f5f6c;
  --paper: #fbfaf7;
  --paper-deep: #f1eee8;
  --line: rgba(17, 17, 22, 0.12);
  --violet: #6c23ff;
  --coral: #ff6b57;
  --lime: #aaff00;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 22px 70px rgba(17, 17, 22, 0.1);
}

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

html {
  width: 100%;
  min-height: 100%;
  scroll-padding-top: 92px;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font,
.body-font,
.alt-font {
  margin-top: 0;
  font-family: var(--font-sans);
  letter-spacing: -0.035em;
  text-transform: none;
}

p,
li {
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.section-shell {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-shell > .section-heading {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.section-shell > .section-heading h2,
.app-wall-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-heading-link {
  flex: 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus {
  background: #292932;
  color: #fff;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: rgba(17, 17, 22, 0.28);
  background: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover,
.button-light:focus {
  background: var(--lime);
  color: var(--ink);
}

.site-nav {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 1000;
  width: min(1180px, 100% - 32px);
  min-height: 58px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(17, 17, 22, 0.72);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav.is-scrolled {
  background: rgba(17, 17, 22, 0.93);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.site-nav-inner,
.site-nav-actions,
.site-brand,
.site-nav-menu ul {
  display: flex;
  align-items: center;
}

.site-nav-inner {
  min-height: 58px;
  justify-content: space-between;
  padding: 0 20px;
}

.site-wordmark {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.site-wordmark:hover,
.site-wordmark:focus,
.site-product-name:hover,
.site-product-name:focus,
.site-nav-menu a:hover,
.site-nav-menu a:focus {
  color: var(--lime);
}

.site-brand-divider {
  width: 1px;
  height: 18px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.3);
}

.site-product-name {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav-menu ul {
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav-menu li {
  margin: 0;
  line-height: 1;
}

.site-nav-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.site-nav-menu li.active a {
  color: #fff;
}

.site-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  appearance: none;
}

.site-nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease;
}

.site-footer {
  padding: 88px 0 max(28px, env(safe-area-inset-bottom));
  background: var(--ink);
  color: #fff;
  text-align: left;
}

.site-footer-inner {
  display: grid;
  width: min(1180px, 100% - 48px);
  grid-template-columns: minmax(220px, 1.2fr) minmax(0, 2.2fr);
  gap: 72px;
  margin: 0 auto;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.065em;
}

.footer-wordmark:hover,
.footer-wordmark:focus {
  color: var(--lime);
}

.footer-intro p {
  max-width: 300px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.55;
}

.footer-email {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-email:hover,
.footer-email:focus,
.footer-links a:hover,
.footer-links a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--lime);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h2 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  grid-column: 1/-1;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.apps-section,
.app-directory {
  padding: 112px 0;
  background: var(--paper);
}

.apps-section .section-button {
  display: none;
}

.app-grid {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.app-grid .app-card {
  min-width: 0;
  margin: 0;
}

.app-card > a {
  display: flex;
  min-width: 0;
  color: var(--ink);
}

.app-icon-frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 25%;
  background: #e9e5df;
  box-shadow: 0 24px 50px rgba(17, 17, 22, 0.15), 0 2px 10px rgba(17, 17, 22, 0.08);
  transform: translateZ(0);
}

.app-icon-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.app-card a:hover .app-icon-frame img,
.app-card a:focus-visible .app-icon-frame img {
  transform: scale(1.045);
}

.app-card-copy {
  min-width: 0;
}

.app-card-copy strong {
  display: block;
  overflow: hidden;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
}

.app-card-description {
  display: block;
  color: var(--ink-soft);
}

.app-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.app-grid-featured .app-card > a {
  height: 100%;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f2efe8);
  box-shadow: var(--shadow-soft);
}

.app-grid-featured .app-card:nth-child(2) > a {
  background: linear-gradient(145deg, #cdbbff, #f8f6ff);
}

.app-grid-featured .app-card:nth-child(3) > a {
  background: linear-gradient(145deg, #fff3ee, #fff);
}

.app-grid-featured .app-icon-frame {
  width: min(72%, 220px);
  margin: 4px auto 44px;
}

.app-grid-featured .app-card-copy strong {
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 36px);
}

.app-grid-featured .app-card-description {
  min-height: 4.5em;
  font-size: 14px;
  line-height: 1.5;
}

.app-card-action {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.app-grid-directory .app-card > a {
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-grid-directory {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px 30px;
}

.app-grid-directory .app-icon-frame {
  width: min(100%, 150px);
}

.app-grid-directory .app-card-copy {
  width: 100%;
  padding-top: 18px;
}

.app-grid-directory .app-card-copy strong {
  font-size: 16px;
}

.app-grid-directory .app-card-description {
  max-width: 180px;
  margin: 7px auto 0;
  font-size: 12px;
  line-height: 1.5;
}

.directory-action {
  margin-top: 70px;
  text-align: center;
}

.page-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 500px;
  align-items: flex-end;
  padding: 150px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 18%, rgba(108, 35, 255, 0.7), transparent 34%), radial-gradient(circle at 15% 85%, rgba(255, 107, 87, 0.38), transparent 32%), var(--ink);
  color: #fff;
}

.page-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -22vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero-image {
  background-image: linear-gradient(rgba(17, 17, 22, 0.42), rgba(17, 17, 22, 0.78)), var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-kicker {
  color: var(--lime);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero-content > p:last-child:not(.section-kicker) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

article > .container {
  padding-top: 72px;
  padding-bottom: 80px;
}

article > .container #post,
#post {
  font-size: 17px;
  line-height: 1.72;
}

#post img {
  max-width: 100%;
  height: auto;
}

#post h1,
#post h2,
#post h3 {
  margin-top: 1.8em;
  font-weight: 700;
  line-height: 1.15;
}

.studio-note {
  padding: 112px 0;
  background: var(--ink);
  color: #fff;
}

.studio-note-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 80px;
  align-items: start;
}

.studio-note .section-kicker {
  color: var(--lime);
}

.studio-note h2 {
  max-width: 880px;
  margin: 0 0 32px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}

.studio-note div > p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.7;
}

.studio-note .text-link {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }
  .app-grid-directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .app-grid-featured .app-card-description {
    min-height: 6em;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 78px;
  }
  .section-shell,
  .site-footer-inner {
    width: min(100% - 32px, 600px);
  }
  .section-shell > .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-shell > .section-heading h2,
  .app-wall-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }
  .section-heading-link {
    display: none;
  }
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 54px;
    border-radius: 16px;
  }
  .site-nav-inner {
    min-height: 54px;
    padding: 0 8px 0 16px;
  }
  .site-nav-actions {
    position: static;
  }
  .site-nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }
  .site-nav.is-open .site-nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .site-nav.is-open .site-nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .site-nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(17, 17, 22, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }
  .site-nav.is-open .site-nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .site-nav-menu ul {
    display: block;
  }
  .site-nav-menu li {
    margin: 0;
  }
  .site-nav-menu a {
    display: block;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
  }
  .site-nav-menu a:hover,
  .site-nav-menu a:focus {
    background: rgba(255, 255, 255, 0.08);
  }
  .site-product-name {
    max-width: 126px;
  }
  .site-footer {
    padding-top: 68px;
  }
  .site-footer-inner {
    display: block;
  }
  .footer-intro {
    margin-bottom: 56px;
  }
  .footer-wordmark {
    font-size: 46px;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }
  .footer-bottom {
    margin-top: 54px;
  }
  .apps-section,
  .app-directory {
    padding: 78px 0;
  }
  .apps-section .section-button {
    display: inline-flex;
    margin-top: 38px;
  }
  .app-grid-featured {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .app-grid-featured .app-card > a {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: 24px;
  }
  .app-grid-featured .app-icon-frame {
    width: 110px;
    margin: 0;
  }
  .app-grid-featured .app-card-copy strong {
    font-size: 25px;
  }
  .app-grid-featured .app-card-description {
    min-height: 0;
    font-size: 12px;
  }
  .app-card-action {
    margin-top: 14px;
  }
  .app-grid-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 18px;
  }
  .app-grid-directory .app-card-copy strong {
    font-size: 13px;
  }
  .app-grid-directory .app-card-description {
    display: none;
  }
  .page-hero {
    min-height: 410px;
    padding: 126px 0 58px;
  }
  .page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
  .studio-note {
    padding: 80px 0;
  }
  .studio-note-grid {
    display: block;
  }
  .studio-note h2 {
    font-size: clamp(38px, 11vw, 54px);
  }
}
@media (max-width: 420px) {
  .app-grid-featured .app-card > a {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }
  .app-grid-featured .app-icon-frame {
    width: 86px;
  }
  .app-grid-featured .app-card-copy strong {
    margin-bottom: 8px;
    font-size: 21px;
  }
  .app-grid-featured .app-card-description {
    display: none;
  }
  .app-grid-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.home-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: max(760px, 100svh);
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(17, 17, 22, 0.98) 0%, rgba(17, 17, 22, 0.88) 40%, rgba(17, 17, 22, 0.28) 100%), url("/img/hero-home-abstract.jpg") center/cover;
  color: #fff;
  isolation: isolate;
}

.home-hero-glow {
  position: absolute;
  top: 10%;
  left: 44%;
  z-index: -1;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(108, 35, 255, 0.38);
  filter: blur(90px);
}

.home-hero-content {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.home-hero-content > * {
  pointer-events: auto;
}

.home-eyebrow {
  margin: 0 0 25px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(62px, 9.4vw, 124px);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.86;
  text-wrap: balance;
}

.home-intro {
  max-width: 530px;
  margin: 34px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.55;
}

.hero-orbit {
  position: absolute;
  right: -14vw;
  bottom: -28vw;
  z-index: -1;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.018), 0 0 0 16vw rgba(255, 255, 255, 0.012);
}

.icon-field {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.floating-icon {
  --parallax-y: 0px;
  position: absolute;
  width: clamp(88px, 11vw, 160px);
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0);
  transition: transform 200ms ease-out;
}

.floating-icon img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25%;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), 0 4px 18px rgba(0, 0, 0, 0.2);
  animation: icon-drift 7s ease-in-out infinite alternate;
  user-select: none;
}

.floating-icon[data-icon-index="1"] {
  top: 16%;
  right: 7%;
  width: clamp(126px, 16vw, 220px);
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0) rotate(7deg);
}

.floating-icon[data-icon-index="2"] {
  top: 58%;
  right: 21%;
  width: clamp(94px, 12vw, 164px);
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0) rotate(-9deg);
}

.floating-icon[data-icon-index="3"] {
  right: 2%;
  bottom: 7%;
  width: clamp(82px, 10vw, 140px);
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0) rotate(11deg);
}

.floating-icon[data-icon-index="4"] {
  top: 12%;
  left: 43%;
  width: clamp(68px, 8vw, 112px);
  opacity: 0.72;
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0) rotate(-12deg);
}

.floating-icon[data-icon-index="5"] {
  right: 39%;
  bottom: 8%;
  width: clamp(62px, 7vw, 96px);
  opacity: 0.64;
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0) rotate(8deg);
}

.floating-icon[data-icon-index="6"] {
  top: 35%;
  right: 30%;
  width: clamp(56px, 6vw, 84px);
  opacity: 0.54;
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--parallax-y)), 0) rotate(15deg);
}

.floating-icon:nth-child(2n) img {
  animation-delay: -2.2s;
}

.floating-icon:nth-child(3n) img {
  animation-delay: -4.4s;
}

@keyframes icon-drift {
  from {
    transform: translateY(-7px) rotate(-1deg);
  }
  to {
    transform: translateY(9px) rotate(1.5deg);
  }
}
.featured-showcase {
  padding: 126px 0 138px;
  background: var(--paper);
}

.app-wall-section {
  padding: 112px 0 126px;
  background: var(--paper-deep);
}

.app-wall-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}

.app-wall-heading .section-kicker {
  margin: 0 0 8px;
}

.app-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.app-wall-item {
  min-width: 0;
  margin: 0;
}

.app-wall-link {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--ink);
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(108, 35, 255, 0.16);
}

.app-wall-icon {
  display: block;
  width: min(100%, 132px);
  aspect-ratio: 1;
  border-radius: 25%;
  box-shadow: 0 18px 36px rgba(17, 17, 22, 0.14);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.app-wall-icon img,
.app-wall-overlay-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.app-wall-icon img {
  animation: app-wall-drift 5.4s ease-in-out infinite alternate;
}

.app-wall-item:nth-child(3n+2) .app-wall-icon img {
  animation-delay: -1.8s;
}

.app-wall-item:nth-child(3n) .app-wall-icon img {
  animation-delay: -3.6s;
}

.app-wall-link > strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes app-wall-drift {
  from {
    transform: translateY(-3px) rotate(-0.6deg);
  }
  to {
    transform: translateY(4px) rotate(0.8deg);
  }
}
.app-wall-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(108, 35, 255, 0.98), rgba(17, 17, 22, 0.98));
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(9px) scale(0.95);
  transition: opacity 200ms ease, transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.app-wall-overlay::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 22, 0.03) 18%, rgba(17, 17, 22, 0.9) 78%);
  content: "";
}

.app-wall-overlay > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.05);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.app-wall-overlay-icon {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 104px;
  height: 104px;
  border-radius: 25%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) rotate(-5deg);
}

.app-wall-overlay-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: block;
  text-align: left;
}

.app-wall-overlay-copy strong,
.app-wall-overlay-copy span {
  display: block;
}

.app-wall-overlay-copy strong {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 800;
}

.app-wall-overlay-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.app-wall-link:hover .app-wall-overlay,
.app-wall-link:focus-visible .app-wall-overlay {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-wall-link:hover .app-wall-overlay > img,
.app-wall-link:focus-visible .app-wall-overlay > img {
  transform: scale(1);
}

.app-wall-link:hover .app-wall-icon,
.app-wall-link:focus-visible .app-wall-icon {
  transform: scale(0.9) rotate(-4deg);
}

.app-preview-dialog {
  width: min(440px, 100% - 24px);
  max-height: calc(100svh - 24px);
  padding: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.app-preview-dialog::backdrop {
  background: rgba(8, 8, 12, 0.76);
  backdrop-filter: blur(12px);
}

.app-preview-sheet {
  position: relative;
}

.app-preview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(17, 17, 22, 0.76);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  place-items: center;
  touch-action: manipulation;
  backdrop-filter: blur(10px);
}

.app-preview-close:hover,
.app-preview-close:focus-visible {
  background: var(--violet);
}

.app-preview-media {
  height: min(43svh, 340px);
  overflow: hidden;
  background: #252530;
}

.app-preview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.app-preview-body {
  padding: 24px;
}

.app-preview-close + .app-preview-body {
  padding-top: 76px;
}

.app-preview-title {
  display: flex;
  min-width: 0;
  gap: 16px;
  align-items: center;
}

.app-preview-title img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 25%;
}

.app-preview-title h3 {
  min-width: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.app-preview-body > p {
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.app-preview-body .button {
  width: 100%;
}

.app-wall-button {
  display: flex;
  width: fit-content;
  margin: 66px auto 0;
}

.recent-stories {
  padding: 122px 0 130px;
  background: #fff;
}

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

.story-card {
  min-width: 0;
  margin: 0;
  background: #fff;
}

.story-card a {
  position: relative;
  display: flex;
  min-height: 260px;
  height: 100%;
  flex-direction: column;
  padding: 32px;
  background: #fff;
}

.story-card a:hover,
.story-card a:focus-visible {
  z-index: 1;
  background: #d5c0ff;
}

.story-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.story-excerpt {
  max-width: 34em;
  margin: 20px 0 0;
  padding-right: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.story-arrow {
  position: absolute;
  right: 28px;
  bottom: 27px;
  font-size: 16px;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.story-card a:hover .story-arrow,
.story-card a:focus-visible .story-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.recent-stories-button {
  display: none;
}

@media (max-width: 991px) {
  .home-hero h1 {
    max-width: 660px;
    font-size: clamp(62px, 11.5vw, 96px);
  }
  .floating-icon[data-icon-index="1"] {
    right: 3%;
  }
  .floating-icon[data-icon-index="2"] {
    right: 7%;
    bottom: 12%;
    top: auto;
  }
  .floating-icon[data-icon-index="3"] {
    display: none;
  }
  .app-wall-heading {
    grid-template-columns: 1fr;
  }
  .app-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .home-hero {
    min-height: max(700px, 100svh);
    align-items: flex-end;
    padding: 130px 0 72px;
  }
  .home-hero-content {
    width: calc(100% - 32px);
  }
  .home-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }
  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(55px, 17vw, 82px);
    line-height: 0.9;
  }
  .home-intro {
    max-width: 330px;
    margin: 24px 0 28px;
    font-size: 14px;
  }
  .floating-icon[data-icon-index="1"] {
    top: 13%;
    right: -2%;
    width: 126px;
    opacity: 0.9;
  }
  .floating-icon[data-icon-index="2"] {
    top: 24%;
    right: 36%;
    bottom: auto;
    width: 76px;
    opacity: 0.68;
  }
  .floating-icon[data-icon-index="4"] {
    top: 15%;
    left: 7%;
    width: 68px;
  }
  .floating-icon[data-icon-index="5"],
  .floating-icon[data-icon-index="6"] {
    display: none;
  }
  .hero-orbit {
    right: -40vw;
    bottom: -20vw;
    width: 110vw;
    height: 110vw;
  }
  .featured-showcase,
  .app-wall-section,
  .recent-stories {
    padding: 82px 0;
  }
  .app-wall-heading {
    margin-bottom: 42px;
  }
  .app-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 12px;
  }
  .app-wall-link {
    min-height: 146px;
    gap: 12px;
    padding: 8px 4px;
    border-radius: 18px;
  }
  .app-wall-icon {
    width: min(100%, 100px);
  }
  .app-wall-link > strong {
    font-size: 12px;
  }
  .app-wall-overlay {
    display: none;
  }
  .app-wall-link:active .app-wall-icon {
    transform: scale(0.92);
  }
  .app-wall-button {
    margin-top: 46px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .story-card a {
    min-height: 220px;
    padding: 26px;
  }
  .story-card h3 {
    font-size: 25px;
  }
  .recent-stories-button {
    display: inline-flex;
    margin-top: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-icon {
    transform: none !important;
  }
  .floating-icon img,
  .app-wall-icon img {
    animation: none;
  }
  .app-wall-overlay,
  .app-wall-overlay > img,
  .app-wall-icon,
  .story-arrow {
    transition: none;
  }
}
.blog-shell {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
}

.blog-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 500px;
  align-items: flex-end;
  padding: 150px 0 78px;
  overflow: hidden;
  background: radial-gradient(circle at 76% 22%, rgba(108, 35, 255, 0.7), transparent 32%), radial-gradient(circle at 18% 90%, rgba(255, 107, 87, 0.38), transparent 34%), var(--ink);
  color: #fff;
}

.blog-hero::after {
  position: absolute;
  top: -28vw;
  right: -16vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.blog-hero .container {
  position: relative;
  z-index: 1;
  width: min(1180px, 100% - 48px);
  padding: 0;
  margin: 0 auto;
}

.blog-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.blog-hero-with-image {
  min-height: 620px;
  background-image: var(--blog-hero-image);
  background-position: center;
  background-size: cover;
}

.blog-hero-overlay {
  background-image: linear-gradient(rgba(17, 17, 22, 0.34), rgba(17, 17, 22, 0.82)), var(--blog-hero-image);
}

.blog-eyebrow,
.blog-post-date {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-eyebrow {
  color: var(--lime);
}

.blog-hero-description {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.blog-main {
  padding: 96px 0 120px;
}

.blog-main > .container {
  width: min(1180px, 100% - 48px);
  max-width: none;
  padding: 0;
  margin: 0 auto;
}

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

.blog-post-preview {
  min-width: 0;
  padding: 38px;
  margin: 0;
  border: 0;
  background: #fff;
  transition: background-color 180ms ease;
}

.blog-post-preview:hover,
.blog-post-preview:focus-within {
  background: #d5c0ff;
}

.blog-post-preview h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.blog-post-preview h2 a:hover,
.blog-post-preview h2 a:focus {
  color: var(--violet);
}

.blog-post-preview > p:not(.blog-post-date) {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.blog-post-date {
  color: var(--ink-soft);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-tags li {
  margin: 0;
  font-size: 11px;
}

.blog-tags a {
  display: block;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-weight: 700;
}

.blog-tags a:hover,
.blog-tags a:focus {
  background: #e9e4ff;
  color: var(--violet);
}

.blog-pagination,
.blog-post-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 36px;
  font-size: 13px;
  font-weight: 700;
}

.blog-pagination > :last-child,
.blog-post-navigation > :last-child {
  text-align: right;
}

.blog-pagination span {
  color: var(--ink-soft);
}

.blog-pagination a:hover,
.blog-post-navigation a:hover {
  color: var(--violet);
}

.blog-article {
  max-width: 790px;
  margin: 0 auto;
}

.blog-prose {
  overflow-wrap: anywhere;
  color: #292930;
  font-size: 18px;
  line-height: 1.78;
}

.blog-prose::after {
  display: block;
  clear: both;
  content: "";
}

.blog-prose h2,
.blog-prose h3,
.blog-prose h4,
.blog-prose h5,
.blog-prose h6 {
  margin-top: 1.9em;
  margin-bottom: 0.7em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
}

.blog-prose h2 {
  font-size: 36px;
}

.blog-prose h3 {
  font-size: 28px;
}

.blog-prose p,
.blog-prose li {
  font-size: 18px;
  line-height: 1.78;
}

.blog-prose a {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.blog-prose figure {
  margin: 42px 0;
  text-align: center;
}

.blog-prose figcaption,
.blog-caption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.blog-prose blockquote {
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  border-left: 3px solid var(--coral);
  color: var(--ink-soft);
}

.blog-prose pre {
  max-width: 100%;
  padding: 20px;
  overflow-x: auto;
  border: 0;
  border-radius: 12px;
  background: #ece9e3;
}

.blog-prose code {
  color: #6c2f59;
  background: #ece9e3;
}

.blog-prose pre code {
  color: inherit;
}

.blog-prose table {
  display: block;
  max-width: 100%;
  margin: 34px 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.blog-prose th,
.blog-prose td {
  padding: 11px 13px;
  border: 1px solid var(--line);
}

.blog-image-border {
  border: 1px solid var(--line);
}

.blog-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 38px 0;
}

.blog-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-post-topics {
  padding-top: 34px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.blog-post-navigation {
  grid-template-columns: 1fr 1fr;
  padding-bottom: 42px;
  margin-top: 36px;
  border-bottom: 1px solid var(--line);
}

.blog-ad,
.blog-comments {
  padding: 40px 0 0;
}

.blog-comments h2 {
  margin-top: 0;
}

.blog-taxonomy-label {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-topic-browser {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.blog-topic-cloud-card {
  position: relative;
  padding: 42px;
  overflow: hidden;
  border-radius: 30px;
  background: radial-gradient(circle at 20% 20%, rgba(108, 35, 255, 0.9), transparent 42%), radial-gradient(circle at 88% 78%, rgba(170, 255, 0, 0.14), transparent 34%), var(--ink);
  box-shadow: 0 28px 80px rgba(17, 17, 22, 0.18);
}

.blog-topic-cloud-card::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.blog-topic-cloud {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 17px;
  align-items: center;
  justify-content: center;
}

.blog-topic-cloud button {
  padding: 5px 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
  touch-action: manipulation;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.blog-topic-cloud button:hover,
.blog-topic-cloud button:focus-visible {
  color: var(--lime);
  transform: translateY(-2px);
}

.blog-topic-cloud button[aria-expanded=true] {
  padding: 9px 13px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.blog-topic-cloud .topic-weight-1 {
  font-size: 13px;
}

.blog-topic-cloud .topic-weight-2 {
  font-size: 17px;
}

.blog-topic-cloud .topic-weight-3 {
  color: rgba(255, 255, 255, 0.82);
  font-size: 23px;
}

.blog-topic-cloud .topic-weight-4 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 31px;
}

.blog-topic-cloud .topic-weight-5 {
  color: #fff;
  font-size: clamp(36px, 4vw, 48px);
}

.blog-topic-results {
  position: sticky;
  top: 108px;
  min-height: 440px;
  scroll-margin-top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-topic-results:has(.blog-topic-panel:not([hidden])) {
  min-height: 0;
}

.blog-topic-prompt {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px;
  background: linear-gradient(145deg, #d5c0ff, #fff);
}

.blog-topic-prompt[hidden] {
  display: none;
}

.blog-topic-prompt > span {
  font-size: 30px;
}

.blog-topic-prompt p {
  max-width: 280px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.blog-topic-panel {
  padding: 0;
}

.blog-topic-panel h3 {
  padding: 34px 36px 28px;
  margin: 0;
  background: #d5c0ff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.blog-topic-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-topic-panel li {
  margin: 0;
  border-top: 1px solid var(--line);
}

.blog-topic-panel li:first-child {
  border-top: 0;
}

.blog-topic-panel li a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 17px 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-topic-panel li a > time {
  justify-self: end;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.blog-topic-panel li a:hover,
.blog-topic-panel li a:focus-visible {
  background: #eee8ff;
}

@media (max-width: 767px) {
  .blog-hero,
  .blog-hero-with-image {
    min-height: 430px;
    padding: 126px 0 58px;
  }
  .blog-hero .container,
  .blog-main > .container {
    width: calc(100% - 32px);
  }
  .blog-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
  .blog-main {
    padding: 68px 0 86px;
  }
  .blog-post-list {
    grid-template-columns: 1fr;
  }
  .blog-post-preview {
    padding: 27px;
  }
  .blog-post-preview h2 {
    font-size: 30px;
  }
  .blog-pagination,
  .blog-post-navigation {
    grid-template-columns: 1fr 1fr;
  }
  .blog-pagination > span {
    display: none;
  }
  .blog-prose,
  .blog-prose p,
  .blog-prose li {
    font-size: 17px;
  }
  .blog-prose h2 {
    font-size: 31px;
  }
  .blog-topic-browser {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .blog-topic-cloud-card {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .blog-topic-cloud {
    gap: 12px 13px;
  }
  .blog-topic-cloud .topic-weight-4 {
    font-size: 27px;
  }
  .blog-topic-cloud .topic-weight-5 {
    font-size: 34px;
  }
  .blog-topic-results {
    position: static;
    min-height: 340px;
    border-radius: 24px;
  }
  .blog-topic-prompt {
    min-height: 340px;
    padding: 30px;
  }
  .blog-topic-panel h3 {
    padding: 28px 24px 24px;
  }
  .blog-topic-panel li a {
    padding: 16px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-post-preview,
  .blog-topic-cloud button {
    transition: none;
  }
}

/*# sourceMappingURL=main.css.map */
