:root {
  color-scheme: light;
  --background: #fff;
  --surface: #f6f6f4;
  --surface-strong: #ecece9;
  --text: #151515;
  --muted: #686866;
  --faint: #92928e;
  --line: rgb(21 21 21 / 12%);
  --button: #171717;
  --button-text: #fff;
  --accent: #8b5cf6;
  --media-a: #e8e1f5;
  --media-b: #f3eef9;
  --media-c: #dcd6e8;
  --media-overlay: rgb(255 255 255 / 4%);
  --shadow: 0 36px 90px rgb(32 24 45 / 18%);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --background: #080808;
  --surface: #111110;
  --surface-strong: #191918;
  --text: #f5f5f3;
  --muted: #9b9b97;
  --faint: #73736f;
  --line: rgb(255 255 255 / 12%);
  --button: #f4f4f1;
  --button-text: #111;
  --media-a: #211a2a;
  --media-b: #151219;
  --media-c: #2b2434;
  --media-overlay: rgb(0 0 0 / 18%);
  --shadow: 0 42px 110px rgb(0 0 0 / 50%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  transform: translateY(-150%);
}

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

.container {
  width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-actions a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-actions a:hover,
.nav-actions a:focus-visible {
  color: var(--text);
}

.theme-toggle {
  width: 54px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--background);
  box-shadow: 0 1px 4px rgb(0 0 0 / 18%);
  transition: transform 180ms ease;
}

html[data-theme="dark"] .theme-toggle::before {
  transform: translateX(22px);
}

.theme-toggle span {
  z-index: 1;
  font-size: 12px;
  line-height: 1;
}

.hero {
  padding: 54px 24px 35px;
  text-align: center;
}

.hero h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(3.5rem, 7.2vw, 6.3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 690px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.text-link {
  color: var(--muted);
  font-size: 15px;
  text-underline-offset: 4px;
}

.android-dialog-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

body.dialog-open {
  overflow: hidden;
}

.android-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 0;
  overflow: auto;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 32px 100px rgb(0 0 0 / 38%);
}

.android-dialog::backdrop {
  background: rgb(0 0 0 / 62%);
  backdrop-filter: blur(8px);
}

.android-dialog-content {
  position: relative;
  padding: 42px;
}

.android-dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.android-dialog-eyebrow {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.android-dialog h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

#android-dialog-description {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.android-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.android-option {
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: var(--background);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease;
}

.android-option:hover {
  transform: translateY(-2px);
  border-color: var(--faint);
}

.android-option-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.android-option-link {
  color: var(--muted);
  font-size: 14px;
}

.android-dialog-disclaimer {
  margin: 22px 0 0;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.rating {
  margin: 0 0 28px;
  color: var(--faint);
  font-size: 14px;
}

.rating-stars {
  color: #e5ad25;
  letter-spacing: 0.08em;
}

.media-stage {
  width: 100%;
  padding: 120px 24px;
  background:
    linear-gradient(var(--media-overlay), var(--media-overlay)),
    url("assets/art-institute-of-chicago-F7PTXUuNR0s-unsplash.jpg") center / cover no-repeat;
}

.video-frame {
  width: min(840px, calc(100% - 216px));
  margin-inline: auto;
  overflow: hidden;
  border-radius: 22px;
  background: #101010;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.press {
  padding-top: 24px;
  padding-bottom: 40px;
  text-align: center;
}

.press-label {
  margin: 0 0 22px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  flex-wrap: wrap;
}

.press-logos img {
  width: auto;
  height: 24px;
  max-width: 112px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
}

html[data-theme="dark"] .press-logos img {
  filter: grayscale(1) invert(1);
  opacity: 0.6;
}

.press-logos .logo-square {
  height: 34px;
}

.features {
  padding-top: 92px;
  padding-bottom: 100px;
}

.section-heading {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(54px, 8vw, 110px);
  row-gap: 56px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-sticker {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgb(0 0 0 / 12%));
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-card p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.community-videos {
  padding: 132px 0 64px;
  overflow: hidden;
  background: var(--surface);
}

.community-videos-heading {
  text-align: center;
}

.community-videos-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.community-videos-heading > p {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.creator-opt-out {
  max-width: 650px;
  margin: 58px auto 0;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.creator-opt-out a {
  color: var(--muted);
  text-underline-offset: 3px;
}

.creator-opt-out a:hover {
  color: var(--text);
}

.video-petals {
  margin-top: 92px;
  padding: 28px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
}

.tiktok-petal {
  position: relative;
  z-index: 1;
  width: clamp(225px, 24vw, 280px);
  flex: 0 0 auto;
  text-align: center;
  transition: transform 220ms ease, z-index 0s;
}

.tiktok-petal-left {
  transform: translateY(12px) rotate(-5deg);
}

.tiktok-petal-center {
  z-index: 2;
  transform: translateY(-18px);
}

.tiktok-petal-right {
  transform: translateY(12px) rotate(5deg);
}

.tiktok-petal:hover,
.tiktok-petal:focus-within,
.tiktok-petal.is-playing {
  z-index: 4;
  transform: translateY(-10px) rotate(0deg);
}

.tiktok-load,
.tiktok-petal iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 28px 70px rgb(0 0 0 / 22%);
}

.tiktok-load {
  position: relative;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.tiktok-load img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgb(0 0 0 / 64%));
}

.tiktok-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: #151515;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  padding-left: 3px;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
}

.tiktok-handle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tiktok-petal > a {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-underline-offset: 3px;
}

.wall-of-love {
  padding: 132px 0 152px;
  overflow: hidden;
}

.wall-heading {
  margin-bottom: 58px;
}

.wall-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.review-row {
  width: 100%;
  overflow: hidden;
  padding: 7px 17px;
  contain: layout paint;
}

.review-track {
  width: max-content;
  display: flex;
  transform: translate3d(0, 0, 0);
}

.review-track.is-marquee-ready {
  animation: marquee-left 150s linear infinite;
}

.review-group {
  display: flex;
  flex: none;
  gap: 14px;
  padding-inline: 7px;
}

.review-row-reverse .review-track.is-marquee-ready {
  animation-name: marquee-right;
  animation-duration: 164s;
}

.review-track-slow {
  animation-duration: 178s;
}

.review-card {
  width: clamp(280px, 32vw, 470px);
  min-height: 172px;
  margin: 0;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card blockquote {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
  font-weight: 580;
}

.review-card figcaption {
  margin-top: 26px;
  color: var(--faint);
  font-size: 13px;
}

@keyframes marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.faq {
  padding: 0 0 140px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.faq-heading-wrap {
  position: relative;
  padding-top: 112px;
}

.faq-sticker {
  position: absolute;
  top: 0;
  left: 8px;
  width: 92px;
  height: 92px;
  object-fit: contain;
  transform: rotate(-8deg);
  filter: drop-shadow(0 12px 16px rgb(0 0 0 / 14%));
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 25px 40px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 560;
  letter-spacing: -0.018em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 24px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -4px 40px 25px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  padding: 128px 24px;
  background:
    linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 30%)),
    url("assets/art-institute-of-chicago-F7PTXUuNR0s-unsplash.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 650;
}

.final-cta p {
  margin: 0 auto 32px;
  color: rgb(255 255 255 / 78%);
  font-size: 17px;
}

.final-cta .primary-button {
  background: #fff;
  color: #151515;
}

.site-footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
  max-width: none;
  white-space: nowrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 40px, 1080px);
  }

  .site-nav {
    min-height: 64px;
  }

  .nav-actions {
    gap: 16px;
  }

  .nav-optional {
    display: none;
  }

  .hero {
    padding: 48px 20px 31px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
    letter-spacing: -0.035em;
  }

  .hero-copy {
    margin-top: 28px;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .android-dialog-content {
    padding: 34px 24px 28px;
  }

  .android-options {
    grid-template-columns: 1fr;
  }

  .android-option {
    min-height: 104px;
  }

  .media-stage {
    padding: 64px 20px;
  }

  .video-frame {
    width: 100%;
    border-radius: 17px;
  }

  .press {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .press-logos {
    gap: 24px 30px;
  }

  .press-logos img {
    height: 20px;
    max-width: 94px;
  }

  .press-logos .logo-square {
    height: 30px;
  }

  .features {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-card {
    min-height: 0;
  }

  .community-videos {
    padding: 96px 0 56px;
  }

  .community-videos-heading {
    text-align: left;
  }

  .community-videos-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .community-videos-heading > p {
    margin-left: 0;
  }

  .video-petals {
    width: 100%;
    margin-top: 54px;
    padding: 18px 20px 28px;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-petals::-webkit-scrollbar {
    display: none;
  }

  .tiktok-petal,
  .tiktok-petal-left,
  .tiktok-petal-center,
  .tiktok-petal-right {
    width: min(76vw, 280px);
    transform: none;
    scroll-snap-align: center;
  }

  .wall-of-love {
    padding-top: 96px;
  }

  .wall-of-love,
  .faq {
    padding-bottom: 108px;
  }

  .wall-heading {
    margin-bottom: 40px;
  }

  .review-track {
    gap: 10px;
    padding-inline: 20px;
  }

  .review-card {
    width: min(78vw, 320px);
    min-height: 158px;
    padding: 24px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .faq-heading-wrap {
    padding-top: 94px;
  }

  .faq-sticker {
    width: 76px;
    height: 76px;
  }

  .final-cta {
    padding: 104px 20px;
  }

  .footer-row {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .review-row {
    overflow: visible;
  }

  .review-track {
    width: auto;
    display: block;
    transform: none !important;
    animation: none !important;
  }

  .review-group {
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
  }

  .review-group[aria-hidden="true"] {
    display: none;
  }

  .review-card {
    flex: 1 1 280px;
  }
}
