@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Coiny&display=swap");

:root {
  --bg-1: #f6efe5;
  --bg-2: #e8f1ff;
  --ink: #101418;
  --muted: #667085;
  --accent: #ff6b3d;
  --accent-2: #1ca39a;
  --accent-3: #f4c95d;
  --card: #ffffff;
  --stroke: rgba(16, 20, 24, 0.12);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Coiny", cursive;
  --font-body: "Space Grotesk", sans-serif;
  --brand-color: #23a09e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 15% -10%, #fff6e0 0%, transparent 60%),
    radial-gradient(900px 700px at 110% 10%, #d9ecff 0%, transparent 55%),
    radial-gradient(700px 600px at 50% 120%, #ffe9f0 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(16, 20, 24, 0.03) 0px,
    rgba(16, 20, 24, 0.03) 1px,
    transparent 1px,
    transparent 6px
  );
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.25;
  animation: float 14s ease-in-out infinite;
}

.blob.one {
  background: radial-gradient(circle, #ffd3bf 0%, transparent 70%);
  top: -120px;
  left: -80px;
}

.blob.two {
  background: radial-gradient(circle, #d8fff2 0%, transparent 70%);
  bottom: -140px;
  right: -100px;
  animation-delay: 1.5s;
}

.blob.three {
  background: radial-gradient(circle, #ffeaa7 0%, transparent 70%);
  top: 35%;
  right: -160px;
  animation-delay: 3s;
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-left: 1px solid rgba(16, 20, 24, 0.06);
  border-right: 1px solid rgba(16, 20, 24, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.home-shell {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 16px 16px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tab-button {
  border: none;
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.tab-button.is-active {
  background: var(--ink);
  color: #fff;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.home-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-left {
  align-items: center;
}

.home-mobile-hero-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.home-mobile-hero-card h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.48);
}

.home-mobile-hero-card .home-proof-points span {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.home-mobile-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.32);
}

.home-mobile-hero-carousel span {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.98) contrast(0.94);
  animation: homeHeroFade 42s infinite;
}

.home-mobile-hero-carousel span:nth-child(1) {
  animation-delay: -1.2s;
}

.home-mobile-hero-carousel span:nth-child(2) {
  animation-delay: 4.8s;
}

.home-mobile-hero-carousel span:nth-child(3) {
  animation-delay: 10.8s;
}

.home-mobile-hero-carousel span:nth-child(4) {
  animation-delay: 16.8s;
}

.home-mobile-hero-carousel span:nth-child(5) {
  animation-delay: 22.8s;
}

.home-mobile-hero-carousel span:nth-child(6) {
  animation-delay: 28.8s;
}

.home-mobile-hero-carousel span:nth-child(7) {
  animation-delay: 34.8s;
}

@keyframes homeHeroFade {
  0% {
    opacity: 0;
  }
  4%,
  13% {
    opacity: 1;
  }
  17%,
  100% {
    opacity: 0;
  }
}

.brand-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #239f9e;
  letter-spacing: 0;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  max-width: 360px;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.home-hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.home-hero-text {
  margin: 0;
  padding-inline: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  text-align: left;
}

.home-proof-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.home-proof-points span {
  border: none;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #0e6f6b;
  font-size: 12px;
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.home-hero-actions .button {
  text-decoration: none;
}

.home-preview-cue {
  display: flex;
  justify-content: center;
  color: #0e6f6b;
  flex: 1 1 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.home-preview-cue-mobile {
  text-decoration: none;
}

.home-preview-cue-desktop {
  display: none;
}

.home-store-links {
  justify-content: center;
  margin-top: 0;
}

.waitlist-card.home-thingfluencer-card {
  text-align: left;
  width: 100%;
  margin: 0;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--accent) 0%, #f4c95d 46%, var(--brand-color) 100%);
  border-color: rgba(16, 20, 24, 0.08);
  color: #fff;
  box-shadow: 0 18px 40px rgba(35, 160, 158, 0.2);
}

.waitlist-card.home-thingfluencer-card > div {
  min-width: 0;
}

.waitlist-card.home-thingfluencer-card .thingfluencer-card-button {
  align-self: flex-start;
  width: auto;
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.waitlist-card.home-thingfluencer-card .waitlist-text {
  color: rgba(255, 255, 255, 0.84);
}

.home-desktop-only {
  display: none !important;
}

.home-mobile-store-links {
  box-sizing: border-box;
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-inline: 2px;
}

.home-mobile-store-links .store-badge {
  flex: 1 1 0;
  min-width: 0;
  height: 46px;
}

.home-mobile-store-links .store-badge.ios,
.home-mobile-store-links .store-badge.android {
  width: auto;
}

.home-auth,
.home-invite {
  width: min(480px, 100%);
}

.home-right {
  align-items: center;
}

.phone-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  position: relative;
  box-sizing: border-box;
  width: min(380px, 100vw);
  height: auto;
  border-radius: 34px;
  padding: 8px;
  background: #0f1115;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.35);
}

.phone-screen {
  min-height: clamp(620px, 150vw, 690px);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  overflow: visible;
  padding: 16px 16px 28px;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--brand-color);
  color: #fff;
}

.site-footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 32px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-stack {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.footer-brand-mark {
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.site-footer p {
  margin: 6px 0 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.footer-brand-stack p {
  margin-top: 4px;
}

.footer-store-links {
  margin-top: 0;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.site-footer-nav h2 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.8;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
  text-decoration: underline;
}

.site-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.company-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px 16px 56px;
}

.company-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 28px;
}

.company-nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.company-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.company-hero {
  padding: 38px 0 26px;
  display: grid;
  gap: 20px;
}

.company-eyebrow {
  margin: 0 0 10px;
  color: var(--brand-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.company-hero p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.company-card {
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  padding: 20px;
}

.company-card h2,
.company-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.company-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.company-card a {
  color: var(--brand-color);
  font-weight: 800;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.company-feature-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.company-feature-list li + li {
  margin-top: 8px;
}

.company-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.company-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--brand-color);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.company-button.secondary {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(16, 20, 24, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  width: fit-content;
}

.phone-tab-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
}

body[data-home-tab="preview"] .phone-tab-panel[data-home-panel="preview"],
body[data-home-tab="signin"] .phone-tab-panel[data-home-panel="signin"] {
  display: flex;
}

.phone-header {
  display: flex;
  padding: 0 2px;
}

.phone-header-centered {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.phone-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #239f9e;
  line-height: 1;
}

.preview-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
}

.preview-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  width: 100%;
  max-width: none;
}

.preview-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.preview-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-presets {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  padding: 0 4px 2px;
  scrollbar-width: none;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.preview-presets::-webkit-scrollbar {
  display: none;
}

.preview-preset {
  flex: 0 0 auto;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  color: #0e6f6b;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.preview-preset:hover {
  background: #fff;
}

.preview-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(16, 20, 24, 0.14);
}

.preview-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.preview-icon-button:hover {
  background: rgba(16, 20, 24, 0.04);
}

.preview-icon {
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  stroke-width: 2;
  fill: none;
}

.preview-input {
  border: none;
  background: transparent;
  padding: 0;
  flex: 1;
  font-size: 14px;
  box-shadow: none;
}

.preview-search-row .preview-input {
  flex: 1 1 auto;
  min-width: 0;
}

.preview-search-row .preview-button {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

.preview-icon-button:focus,
.preview-input:focus {
  outline: none;
}

.preview-icon-button:focus-visible {
  outline: 2px solid rgba(35, 159, 158, 0.42);
  outline-offset: 2px;
}

.preview-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview-grid {
  gap: 8px;
}

.preview-grid .tile {
  min-height: 96px;
  aspect-ratio: 1 / 1.08;
  position: relative;
  overflow: hidden;
}

.preview-status,
.preview-count {
  margin: 0;
}

.preview-status:empty,
.preview-count:empty {
  display: none;
}

.preview-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
}

.preview-tile-location {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  opacity: 0.9;
  line-height: 1.2;
}

.preview-tile-location-icon {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.preview-tile-location-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-count {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.waitlist-card {
  border-radius: 16px;
  padding: 12px;
  background: rgba(16, 20, 24, 0.06);
  border: 1px solid rgba(16, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-title {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

.waitlist-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 20, 24, 0.12);
}

.waitlist-form .waitlist-input {
  border: none;
  background: transparent;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  box-shadow: none;
}

.waitlist-form .waitlist-input:focus {
  outline: none;
}

.waitlist-form .waitlist-button {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
}

.phone-auth-panel {
  padding: 4px 2px 0;
}

.phone-auth-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-mode-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(16, 20, 24, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  width: fit-content;
  align-self: center;
}

.auth-panel-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-field,
.auth-field-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-field-row .auth-input,
.auth-field .auth-input {
  flex: 1 1 auto;
  min-width: 0;
}

.auth-input {
  width: 100%;
  border-radius: 12px;
  padding: 10px 12px;
}

.auth-copy-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.auth-helper,
.auth-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.auth-helper.error,
.auth-status.error {
  color: #c0392b;
}

.auth-helper.success,
.auth-status.success {
  color: var(--accent-2);
}

.auth-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
}

.auth-status-icon.is-success {
  color: #1f8a4d;
}

.auth-status-icon.is-error {
  color: #c0392b;
}

.auth-inline-link {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.auth-register-gated {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-validate-button {
  width: auto;
  align-self: flex-start;
}

.auth-reset-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.auth-clickwrap {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.waitlist-status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.8;
  white-space: pre-line;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-color);
  text-decoration: none;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.is-hidden {
  display: none !important;
}

.status-text {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.status-helper {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

.status-review-thumb-wrap {
  margin-top: 10px;
}

.status-review-thumb {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(16, 20, 24, 0.04);
}

.status-text.is-loading::after {
  content: "...";
  display: inline-block;
  width: 0;
  overflow: hidden;
  vertical-align: bottom;
  animation: ellipsis 1.2s steps(4, end) infinite;
}

.status-text.error {
  color: #c0392b;
}

.status-text.success {
  color: var(--accent-2);
}

@keyframes ellipsis {
  to {
    width: 1.2em;
  }
}

.icon-button {
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

a.icon-button {
  color: inherit;
  text-decoration: none;
}

.icon-button.icon-only {
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  text-transform: none;
  position: relative;
}

.icon-button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  box-shadow: 0 4px 10px rgba(16, 20, 24, 0.2);
}

.hero {
  padding: 8px 22px 12px;
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.get-app-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.get-app-pill:hover,
.get-app-pill:focus-visible {
  background: #27313b;
  color: #fff;
}

.profile-menu {
  position: relative;
}

.profile-menu-trigger {
  cursor: pointer;
}

.profile-menu-trigger svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.profile-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 20;
}

.profile-menu-link,
.profile-menu-action {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.profile-menu-link:hover,
.profile-menu-link:focus-visible,
.profile-menu-action:hover,
.profile-menu-action:focus-visible {
  background: rgba(28, 163, 154, 0.1);
  outline: none;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

body[data-page="beta"] .hero h1,
body[data-page="privacy-policy"] .hero h1,
body[data-page="terms-of-service"] .hero h1,
body[data-page="child-safety"] .hero h1 {
  color: var(--brand-color);
}

.hero-title {
  font-family: var(--font-body);
  font-size: 30px;
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}

body[data-page="feed"] .hero-title.feed-tagline {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

body[data-page="search"] [data-tig="search-hint"]:empty,
body[data-page="search"] [data-tig="search-status"]:empty {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.profile-auth {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.profile-actions {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.profile-actions .button {
  width: auto;
  flex: 0 0 auto;
}

.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile-meta-row .pill-row {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.section-head .section-title {
  margin-bottom: 0;
}

.dm-thread {
  margin-top: 14px;
}

.dm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dm-title {
  font-weight: 600;
}

.dm-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(16, 20, 24, 0.06);
  margin-bottom: 12px;
}

.dm-request-text {
  font-size: 12px;
  color: var(--muted);
}

.status-card {
  border: 1px dashed rgba(16, 20, 24, 0.2);
  border-radius: 18px;
  padding: 16px;
  background: rgba(16, 20, 24, 0.04);
}

.status-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.status-meta {
  font-size: 12px;
  color: var(--muted);
}

.status-card .status-review-thumb {
  margin: 0 auto 10px;
}

.upload-note-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(180deg, rgba(16, 20, 24, 0) 0%, rgba(16, 20, 24, 0.72) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.dm-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  padding: 6px 2px;
}

.dm-bubble {
  align-self: flex-start;
  background: rgba(16, 20, 24, 0.06);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--ink);
  max-width: 80%;
  word-break: break-word;
}

.dm-bubble.self {
  align-self: flex-end;
  background: rgba(255, 107, 61, 0.16);
  color: #a1361c;
}

.dm-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.dm-form .input {
  flex: 1;
}

.dm-input {
  min-height: 44px;
  max-height: 132px;
  resize: none;
  overflow-y: hidden;
  line-height: 1.35;
}

.dm-form .button {
  width: auto;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.section {
  padding: 12px 22px;
}

.section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.card.search-empty-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.card + .card {
  margin-top: 14px;
}

.card.is-clickable {
  cursor: pointer;
}

.meta-link {
  color: inherit;
  text-decoration: none;
}

.meta-link:hover {
  text-decoration: underline;
}

.meta-link:visited {
  color: inherit;
}

.profile-name {
  margin: 6px 0 0;
  font-weight: 600;
  color: var(--ink);
}

.profile-hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.profile-hero h1 {
  margin-top: 0;
}

.profile-title-block {
  display: flex;
  flex-direction: column;
}

.profile-bio {
  margin: 6px 0 0;
  color: var(--muted);
}

.profile-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: rgba(16, 20, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.profile-avatar.has-image span {
  display: none;
}

.gallery-tile {
  display: block;
  min-height: 140px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(16, 20, 24, 0.08);
  position: relative;
}

.gallery-tile .caption {
  margin: 8px;
  font-size: 12px;
  color: var(--muted);
}

.gallery-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.card.loading-card {
  text-align: center;
  color: var(--muted);
  box-shadow: none;
}

.card.loading-card .caption {
  margin: 0;
}

.media {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ffe1d3 0%, #dbe9ff 60%, #fff4c2 100%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.media video,
.media .upload-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0f1115;
}

.video-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.video-control {
  border: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 17, 21, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(16, 20, 24, 0.2);
}

.media.has-image::after {
  content: none;
}

.media.full-bleed {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -16px -16px 12px;
}

.media.full-bleed::after {
  content: none;
}

.media.tall {
  min-height: 360px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 107, 61, 0.12);
  color: #c23b12;
}

.badge.muted {
  background: rgba(26, 163, 154, 0.12);
  color: #14726c;
}

.upload-preview {
  position: relative;
}

.upload-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

.upload-preview.has-image .upload-placeholder {
  display: none;
}

.upload-reset {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(16, 20, 24, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.upload-caption {
  margin-top: 12px;
}

.upload-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.invite-code-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
}

.invite-code {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.invite-code-card .status-text {
  color: rgba(255, 255, 255, 0.74);
}

.invite-email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 0 0;
  border-top: 1px solid var(--stroke);
}

.invite-email {
  margin: 6px 0 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  text-decoration: none;
  line-height: 0;
}

.store-badge-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.store-badge.is-disabled {
  cursor: default;
  opacity: 0.42;
  filter: grayscale(1);
  pointer-events: none;
}

.store-badge-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted);
}

.store-badge.ios {
  width: 160px;
}

.store-badge.android {
  width: 182px;
}

.store-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.invite-instructions {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(26, 163, 154, 0.1);
}

.invite-instructions ol {
  margin: 0;
  padding-left: 20px;
}

.invite-instructions li + li {
  margin-top: 8px;
}

.invite-waitlist-card {
  margin: 16px 0;
}

.invite-waitlist-card .waitlist-status {
  min-height: 18px;
}

.invite-waitlist-card .waitlist-status.success {
  color: var(--accent-strong);
}

.invite-page-status {
  padding: 0 22px 24px;
}

.upload-submit-row {
  margin-top: 10px;
}

.button.is-ready {
  box-shadow: 0 16px 30px rgba(16, 20, 24, 0.22);
}

.meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.meta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.meta-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.meta-sub svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.stats {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.stats.inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.stat svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.caption {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--ink);
}

.repost-meta {
  margin: 10px 0 -6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: lowercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.06);
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.action svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.06);
  font-size: 12px;
  font-weight: 600;
}

.pill-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-row.sub-tabs {
  margin-bottom: 12px;
}

.things-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(16, 20, 24, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.things-tabs .tab {
  justify-content: center;
  border: none;
  border-right: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 0;
  background: transparent;
  min-width: 0;
  padding: 12px 10px;
}

.things-tabs .tab:last-child {
  border-right: none;
}

.things-tabs .tab.active {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

body[data-page="things"] .things-tabs-section {
  padding-bottom: 0;
}

body[data-page="things"] .things-tapestry-section {
  padding: 0;
}

body[data-page="things"] .things-tapestry-section .tapestry-surface {
  border-radius: 0;
  box-shadow: none;
  padding: 18px 22px 20px;
  min-height: 100vh;
}

.tab {
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: #fff;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab.active {
  background: rgba(255, 107, 61, 0.16);
  color: #a1361c;
  border-color: rgba(255, 107, 61, 0.3);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}

.list-item:last-child {
  border-bottom: none;
}

button.list-item {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 12px 0;
}

.list-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(16, 20, 24, 0.06);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-left: auto;
  flex: 0 0 auto;
}

.list-thumb video,
.list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item.unread .list-title {
  font-weight: 700;
}

.unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  margin-left: auto;
  flex: 0 0 auto;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 20, 24, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}

.list-body {
  flex: 1;
  min-width: 0;
}

.list-actions {
  margin-left: auto;
  flex: 0 0 auto;
}

.list-title {
  font-size: 14px;
  color: var(--ink);
}

.list-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.list-meta.clamp {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.follow-list {
  gap: 8px;
}

.follow-list .list-item {
  border-bottom: none;
}

.follow-item {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.follow-item.selected {
  border-color: rgba(255, 107, 61, 0.4);
  background: rgba(255, 107, 61, 0.12);
}

.follow-check {
  font-weight: 700;
  color: var(--accent);
  margin-left: auto;
}

.bottom-nav {
  position: sticky;
  bottom: 0;
  z-index: 50;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 10px 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(16, 20, 24, 0.08);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.viewer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 24px;
}

.viewer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.viewer-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.viewer-stage {
  position: relative;
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #0f1115;
  box-shadow: var(--shadow);
}

.viewer-media {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.viewer-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f1115;
}

.viewer-media-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f1115;
  display: block;
}

.viewer-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(180deg, rgba(15, 17, 21, 0) 0%, rgba(15, 17, 21, 0.65) 100%);
  color: #fff;
}

.viewer-owner {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  opacity: 0.9;
  margin-bottom: 0;
  color: inherit;
  text-decoration: none;
}

.viewer-owner:visited {
  color: inherit;
}

.embed-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.embed-card {
  width: 100%;
  max-width: 420px;
  background: #12141a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.embed-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0f1115;
}

.embed-media {
  position: absolute;
  inset: 0;
}

.embed-media video,
.embed-media img,
.embed-media-image,
.embed-media-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f1115;
  display: block;
}

.embed-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(15, 17, 21, 0) 0%, rgba(15, 17, 21, 0.75) 100%);
  color: #fff;
}

.embed-owner {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

.embed-caption {
  font-size: 13px;
  line-height: 1.4;
}

.embed-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 16px;
  background: #151820;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.embed-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f6f5f2;
  color: #141414;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: lowercase;
}

.embed-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.embed-open,
.embed-app {
  font-size: 13px;
  font-weight: 600;
  color: #fefefe;
  text-decoration: none;
}

.embed-app {
  font-weight: 500;
  opacity: 0.75;
}

.viewer-repost {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 6px;
  text-transform: lowercase;
}

.viewer-meta-line {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}

.viewer-caption {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.viewer-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 0;
}

.viewer-location svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.viewer-location a {
  color: inherit;
  text-decoration: none;
}

.viewer-location a:hover {
  text-decoration: underline;
}

.viewer-overlay .action {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.viewer-morelike {
  position: relative;
}

.viewer-morelike-trigger {
  white-space: nowrap;
}

.viewer-morelike-panel {
  top: auto;
  bottom: calc(100% + 8px);
  right: auto;
  left: 0;
}

.viewer-morelike-panel .profile-menu-action[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.viewer-tapestry-bar {
  padding: 0 18px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.viewer-tapestry-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.action.is-active {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.action.is-active svg {
  fill: currentColor;
}

.viewer-hints {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.comments-open .viewer-hints {
  opacity: 0;
  pointer-events: none;
}

.comment-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
  max-height: 45vh;
  overflow: hidden;
  z-index: 20;
}

.comment-panel.is-hidden {
  display: none;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
}

.comment-item {
  font-size: 13px;
  color: var(--ink);
}

.comment-item.is-focused {
  border-left: 3px solid var(--accent);
  padding-left: 8px;
}

.comment-item .comment-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 2px;
}

.comment-reply-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.comment-action {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  padding: 0;
}

.comment-action-count {
  color: var(--muted);
  font-size: 11px;
}

.comment-reply-target {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 0 100%;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.comment-input {
  flex: 1;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 24, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.modal.is-hidden {
  display: none;
}

.modal-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px;
  width: min(320px, 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.share-card {
  text-align: left;
  width: min(360px, 100%);
}

.share-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.share-actions .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.share-action {
  width: 100%;
  justify-content: center;
}

.share-action.is-active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.share-dm-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.share-repost-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.share-repost-input {
  position: relative;
}

.share-counter {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--muted);
}

.share-repost-actions {
  display: flex;
  gap: 8px;
}

.share-repost-actions .primary {
  flex: 1;
}

.share-repost-actions .ghost {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.modal-card h3 {
  margin-bottom: 6px;
}

.patch-picker-modal-card {
  width: min(400px, 100%);
}

.modal-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(16, 20, 24, 0.12);
  border-top-color: var(--accent);
  margin: 16px auto 0;
  animation: spin 0.9s linear infinite;
}

.spinner[aria-hidden="true"] {
  animation: none;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.modal-actions .secondary,
.modal-actions .ghost {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: transparent;
  color: var(--ink);
}

.modal-actions .secondary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.patch-picker-card {
  width: 100%;
  border: none;
  display: flex;
  align-items: stretch;
  min-height: 138px;
  padding: 16px;
  cursor: pointer;
}

.patch-picker-card .patch-card-inner {
  width: 100%;
}

.patch-picker-card .patch-cover {
  aspect-ratio: 6 / 5;
}

.patch-picker-card.add-patch-card {
  min-height: 138px;
  border: none;
  box-shadow: 0 14px 24px rgba(16, 20, 24, 0.12);
}

.patch-picker-create-form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 14px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hint {
  flex: 1;
  background: rgba(16, 20, 24, 0.06);
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.hint-detail {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.bottom-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border-radius: 14px;
}

.bottom-nav a[data-page="upload"] {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.bottom-nav a[data-page="upload"]::before {
  content: "+";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(16, 20, 24, 0.2);
  position: absolute;
  left: 50%;
  bottom: calc(100% - 8px);
  transform: translateX(-50%);
  z-index: 1;
}

.bottom-nav a.active {
  background: rgba(255, 107, 61, 0.16);
  color: #a1361c;
  font-weight: 600;
}

.bottom-nav a[data-page="upload"].active {
  background: transparent;
  color: var(--ink);
}

.bottom-nav a[data-page="upload"].active::before {
  background: var(--accent);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 20, 24, 0.12);
  font-size: 14px;
}

.otp-input {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.otp-digit {
  text-align: center;
  padding: 12px 0;
  border-radius: 12px;
  border: 1px solid rgba(16, 20, 24, 0.12);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.otp-input.is-invalid .otp-digit {
  border-color: rgba(224, 71, 61, 0.8);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field-help {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.location-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.location-input-row .input {
  flex: 1;
}

.location-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.location-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.location-suggestion {
  text-align: left;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  cursor: pointer;
  font: inherit;
}

.location-suggestion small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.search-location {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}

.search-location .pill {
  align-self: flex-start;
}

.search-location-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.avatar-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-preview {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: rgba(16, 20, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.avatar-preview.has-image span {
  display: none;
}

.avatar-preview-label {
  font-size: 13px;
  font-weight: 600;
}

.avatar-preview-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 10px;
}

.avatar-choice {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: rgba(16, 20, 24, 0.06);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.avatar-choice.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.18);
}

.avatar-choice.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.avatar-clear {
  margin-top: 8px;
}

.avatar-upload {
  align-self: flex-start;
}

.settings-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-header h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.settings-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.settings-subheader {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 6px;
}

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

.setting-title {
  font-weight: 600;
  font-size: 14px;
}

.setting-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.settings-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.callout-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.callout-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.callout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.callout-actions .button {
  width: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.danger-card {
  border-color: rgba(192, 57, 43, 0.18);
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle span {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0.18);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.toggle input:checked + span {
  background: var(--ink);
}

.toggle input:checked + span::after {
  transform: translateX(20px);
}

.input.is-invalid {
  border-color: #c0392b;
}

.field-error {
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 20, 24, 0.12);
}

.button.danger {
  background: #b73a2f;
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.tapestry-surface {
  position: relative;
  padding: 18px 14px 20px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(16, 20, 24, 0.04);
}

.tapestry-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/thingstry_splash_lighter.png");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  opacity: 0.4;
  z-index: 0;
}

.tapestry-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/thingstry_trans.png");
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: 240px auto;
  opacity: 0.08;
  z-index: 0;
}

.tapestry-surface > * {
  position: relative;
  z-index: 1;
}

.patch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.patch-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-image: url("../img/patch_bg_1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 24px rgba(16, 20, 24, 0.12);
  min-height: 220px;
}

.upload-card {
  position: relative;
}

.upload-card-menu {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.upload-card-menu .profile-menu-panel {
  top: 0;
  right: calc(100% + 8px);
}

.upload-card-menu-trigger {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.upload-card-menu-trigger svg {
  width: 18px;
  height: 18px;
}

.add-patch-card {
  width: 100%;
  border: 2px dashed rgba(16, 20, 24, 0.22);
  cursor: pointer;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patch-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.add-patch-card-inner {
  align-items: center;
  justify-content: center;
}

.add-patch-mark {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.patch-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.patch-cover img,
.patch-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.patch-cover.placeholder {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  padding: 12px;
}

.patch-count {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(16, 20, 24, 0.72);
  color: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.patch-title {
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
  color: var(--ink);
  text-align: center;
}

.patch-meta {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.patch-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.patch-owner {
  font-size: 13px;
  color: var(--muted);
}

.patch-owner a {
  color: inherit;
  text-decoration: none;
}

.patch-owner a:hover {
  text-decoration: underline;
}

.patch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.patch-action {
  border: 1px solid rgba(16, 20, 24, 0.12);
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.patch-action.primary {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.patch-action[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.grid.grid-bleed {
  gap: 6px;
  margin-left: -22px;
  margin-right: -22px;
}

body[data-page="things"] [data-tig="saved-grid"].grid.grid-bleed {
  margin-left: 6px;
  margin-right: 6px;
}

.grid.grid-bleed .tile {
  padding: 0;
  border: none;
  border-radius: 18px;
  min-height: 140px;
}

.grid.grid-bleed .tile.selectable::after {
  inset: 0;
}

.grid.is-empty .empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.stagger.is-empty .empty-state {
  text-align: center;
  padding: 28px 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.feed-sentinel {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 12px 0 4px;
}

.feed-sentinel.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.tile {
  border-radius: var(--radius-md);
  padding: 12px;
  background: linear-gradient(135deg, #fff0e9 0%, #e8f4ff 100%);
  border: 1px solid rgba(16, 20, 24, 0.08);
  min-height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile.selectable {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tile.selectable::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 24, 0) 40%, rgba(16, 20, 24, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tile.selectable.selected {
  outline: 2px solid var(--accent);
  box-shadow: 0 16px 30px rgba(255, 107, 61, 0.2);
}

.tile.selectable.selected::after {
  opacity: 1;
}

.tile .tile-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 1;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background: rgba(10, 12, 16, 0.62);
  padding: 6px 8px;
  border-radius: 8px;
  display: inline-block;
  max-width: calc(100% - 24px);
}

.reveal {
  animation: rise 0.6s ease both;
}

.stagger > * {
  animation: rise 0.6s ease both;
  animation-delay: calc(var(--stagger, 0) * 0.08s);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(16px) scale(1.02);
  }
}

@media (max-width: 899px) {
  body.home {
    overflow-x: hidden;
  }

  .home-shell {
    width: auto;
    max-width: none;
    margin-inline: 0;
    overflow-x: hidden;
  }

  .home-grid {
    overflow-x: hidden;
    row-gap: 18px;
  }

  .home-grid,
  .home-panel,
  .home-hero-copy,
  .home-mobile-hero-card,
  .home-right,
  .phone-shell,
  .phone-frame,
  .phone-screen,
  .phone-content,
  .phone-tab-panel {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .home-grid {
    justify-items: center;
  }

  .home-right {
    order: 2;
  }

  .home-left {
    display: contents;
  }

  .brand-stack {
    order: 1;
  }

  .home-hero-copy {
    order: 3;
  }

  .phone-shell {
    align-items: center;
  }

  .phone-frame {
    width: 100%;
    box-shadow: none;
  }
}

@media (min-width: 900px) {
  .home-shell {
    padding-inline: 32px;
  }

  .app-shell {
    border-radius: 32px;
    margin: 24px auto;
    min-height: calc(100vh - 48px);
  }

  .home-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .company-shell {
    padding-inline: 32px;
  }

  .company-nav {
    display: inline-flex;
  }

  .company-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    align-items: end;
    padding: 62px 0 34px;
  }

  .company-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-left {
    align-items: flex-start;
  }

  .home-mobile-hero-card {
    aspect-ratio: auto;
    overflow: visible;
    width: auto;
    border-radius: 0;
    padding: 0;
  }

  .home-mobile-hero-card h1 {
    color: inherit;
    text-shadow: none;
  }

  .home-mobile-hero-card .home-proof-points span {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
  }

  .home-hero-text {
    padding-inline: 0;
  }

  .home-mobile-hero-carousel {
    display: none;
  }

  .home-right {
    margin-inline: 0;
  }

  .phone-frame {
    border-radius: 48px;
    padding: 14px;
  }

  .phone-screen {
    min-height: 690px;
  }

  .site-footer-inner {
    padding: 40px 32px;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: start;
  }

  .site-footer-bar {
    padding-inline: 32px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .brand-stack {
    align-items: flex-start;
    text-align: left;
  }

  .brand-row {
    justify-content: flex-start;
  }

  .home-hero-copy {
    text-align: left;
  }

  .home-proof-points {
    justify-content: flex-start;
  }

  .home-preview-cue {
    text-align: center;
  }

  .home-preview-cue-desktop {
    display: inline-flex;
  }

  .home-preview-cue-mobile {
    display: none;
  }

  .home-desktop-only {
    display: flex !important;
  }

  .home-mobile-store-links {
    display: none;
  }

  .home-thingfluencer-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 20px;
  }

  .home-thingfluencer-card .waitlist-text {
    max-width: 620px;
  }

  .thingfluencer-card-button {
    flex: 0 0 auto;
  }
}
