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

:root {
  --black: #000;
  --ink: #050505;
  --charcoal: #101010;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.18);
  --white: #fff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-64: rgba(255, 255, 255, 0.64);
  --white-48: rgba(255, 255, 255, 0.48);
  --white-32: rgba(255, 255, 255, 0.32);
  --white-16: rgba(255, 255, 255, 0.16);
  --light-bg: #fff;
  --light-panel: rgba(0, 0, 0, 0.035);
  --light-line: rgba(0, 0, 0, 0.1);
  --light-line-strong: rgba(0, 0, 0, 0.18);
  --light-text: #000;
  --light-muted: rgba(0, 0, 0, 0.58);
  --light-soft: rgba(0, 0, 0, 0.38);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-phone: 0 42px 90px rgba(0, 0, 0, 0.82), 0 16px 36px rgba(255, 255, 255, 0.055) inset;
  --container: 1120px;
  --container-narrow: 860px;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.theme-neutral-light {
  background: #fff;
  color: #000;
}

body.theme-neutral-dark {
  background: #000;
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.container-narrow {
  width: min(var(--container-narrow), calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.tastetwins-logo {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: currentColor;
}

.tastetwins-logo-dark {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
}

.tastetwins-logo-light {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #000;
}

.tastetwins-logo:hover,
a:hover .tastetwins-logo,
a:hover .tastetwins-logo-dark,
a:hover .tastetwins-logo-light {
  color: inherit;
}

.tastetwins-logo-dark:hover,
a:hover .tastetwins-logo-dark {
  color: #fff;
}

.tastetwins-logo-light:hover,
a:hover .tastetwins-logo-light {
  color: #000;
}

.nav-logo,
.footer-logo {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--white-48);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta,
.button,
.button-dark,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.nav-cta,
.button-light {
  background: rgba(255, 255, 255, 0.93);
  color: #000;
}

.button-dark {
  background: #000;
  color: #fff;
}

.button-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-strong);
}

.nav-cta:hover,
.button:hover,
.button-dark:hover,
.button-light:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.section {
  padding: 94px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-white {
  background: #fff;
  color: #000;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--white-48);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-white .eyebrow {
  color: var(--light-soft);
}

.display,
h1,
h2 {
  color: var(--white);
  font-weight: 420;
  letter-spacing: clamp(-0.07em, -0.055em, -0.04em);
  line-height: 0.92;
}

h1 {
  max-width: 680px;
  font-size: clamp(52px, 8.6vw, 112px);
}

h2,
.display {
  font-size: clamp(40px, 6.1vw, 78px);
}

h3 {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.section-white h1,
.section-white h2,
.section-white .display,
.section-white h3 {
  color: #000;
}

.subcopy,
.section-sub,
.page-copy {
  max-width: 470px;
  color: var(--white-64);
  font-size: 16px;
  line-height: 1.72;
}

.section-white .subcopy,
.section-white .section-sub,
.section-white .page-copy {
  color: var(--light-muted);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 88px;
}

.hero-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.signup-form {
  display: grid;
  gap: 10px;
  max-width: 430px;
}

.input-row,
.search-bar {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.input-row input,
.search-bar input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: transparent;
  color: #fff;
  border: 0;
  outline: 0;
}

.input-row input::placeholder,
.search-bar input::placeholder {
  color: var(--white-32);
}

.input-row button {
  align-self: stretch;
  padding: 0 20px;
  border: 0;
  background: #fff;
  color: #000;
  font-weight: 850;
  cursor: pointer;
}

.meta-row,
.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white-48);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.iphone-scene {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.iphone-body {
  --phone-width: 304px;
  position: relative;
  width: var(--phone-width);
  aspect-ratio: 390 / 844;
  padding: 9px;
  border-radius: calc(var(--phone-width) * 0.115);
  background:
    linear-gradient(145deg, #3f3f3f, #111 22%, #090909 52%, #595959 100%);
  box-shadow: var(--shadow-phone);
  transform: rotateY(-18deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.iphone-body::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.iphone-screen-area {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--phone-width) * 0.092);
  background: #030303;
  transform: translateZ(7px);
}

.iphone-screen-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iphone-dynamic-island {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 35%;
  height: 3.5%;
  transform: translateX(-50%);
  z-index: 4;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.iphone-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
}

.iphone-edge-glare {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 1px;
  z-index: 3;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.iphone-reflection {
  width: 72%;
  height: 42px;
  margin: -6px auto 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.11), transparent 70%);
  filter: blur(10px);
}

.phone-small .iphone-body {
  --phone-width: 218px;
}

.phone-medium .iphone-body {
  --phone-width: 254px;
}

.feature-grid,
.metric-grid,
.tier-grid,
.category-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

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

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

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

.card,
.feature-card,
.metric-card,
.tier-card,
.category-card,
.forum-card,
.sidebar-card,
.companion-card {
  background: var(--panel);
  border: 1px solid transparent;
  border-radius: 0;
}

.feature-card,
.metric-card,
.tier-card,
.category-card {
  padding: 28px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-card p,
.tier-card p,
.category-card p,
.forum-card p,
.sidebar-card p,
.companion-card p {
  margin-top: 10px;
  color: var(--white-48);
  font-size: 14px;
  line-height: 1.62;
}

.feature-icon,
.category-icon {
  margin-bottom: 14px;
  font-size: 22px;
}

.hues-header,
.twin-header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.78fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}

.phone-rail {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 32px max(24px, calc((100vw - var(--container)) / 2)) 62px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.phone-rail::-webkit-scrollbar {
  height: 4px;
}

.phone-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hue-item {
  flex: 0 0 222px;
}

.hue-item:nth-child(1) .iphone-body { transform: rotateY(-13deg) rotateX(3deg); }
.hue-item:nth-child(2) .iphone-body { transform: rotateY(-7deg) rotateX(2deg); }
.hue-item:nth-child(3) .iphone-body { transform: rotateY(0deg) rotateX(1deg); }
.hue-item:nth-child(4) .iphone-body { transform: rotateY(7deg) rotateX(2deg); }
.hue-item:nth-child(5) .iphone-body { transform: rotateY(13deg) rotateX(3deg); }

.hue-name {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hue-desc {
  margin-top: 5px;
  color: var(--white-48);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.countdown-item {
  padding: 22px 16px;
  background: var(--panel);
  text-align: center;
}

.countdown-value {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 450;
  letter-spacing: -0.06em;
}

.countdown-label {
  display: block;
  margin-top: 7px;
  color: var(--white-48);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feedback-cascade {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

.feedback-card {
  width: min(660px, 100%);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--light-panel);
  border: 1px solid var(--light-line);
  animation: cascadeFloat 7s ease-in-out infinite;
}

.feedback-card:nth-child(2) {
  justify-self: end;
  animation-delay: -1.4s;
}

.feedback-card:nth-child(3) {
  margin-left: 9%;
  animation-delay: -2.8s;
}

.feedback-card:nth-child(4) {
  justify-self: end;
  margin-right: 7%;
  animation-delay: -4.2s;
}

.feedback-tag {
  margin-bottom: 10px;
  color: var(--light-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.feedback-card p {
  color: #000;
  font-size: 15px;
  line-height: 1.66;
}

.feedback-author {
  margin-top: 14px;
  color: var(--light-muted);
  font-size: 13px;
  font-weight: 650;
}

@keyframes cascadeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.companion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.companion-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.companion-card h3 {
  margin-bottom: 18px;
  font-size: 30px;
  font-weight: 430;
}

.mini-stack {
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.026);
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.mini-card span {
  color: var(--white-48);
  font-size: 13px;
  line-height: 1.58;
}

.page-hero {
  padding: 118px 0 68px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 15px;
}

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

.step-num {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--panel-strong);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 850;
}

.step-text {
  padding-top: 3px;
  color: var(--white-64);
  font-size: 14px;
  line-height: 1.62;
}

.podium {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  margin: 44px 0;
}

.podium-place {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.podium-avatar,
.rank-badge,
.rank-num,
.thread-avatar,
.reply-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-strong);
  color: var(--white-80);
  font-weight: 850;
}

.podium-avatar {
  width: 58px;
  height: 58px;
}

.podium-block {
  width: 112px;
  display: grid;
  place-items: end center;
  padding-bottom: 14px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.podium-place:first-child .podium-block { height: 86px; }
.podium-place:nth-child(2) .podium-block { height: 124px; }
.podium-place:nth-child(3) .podium-block { height: 68px; }

.podium-name {
  color: var(--white-80);
  font-size: 12px;
  font-weight: 800;
}

.podium-count {
  color: var(--white-48);
  font-size: 11px;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 15px 18px;
  text-align: left;
}

.leaderboard-table th {
  color: var(--white-48);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.leaderboard-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.leaderboard-table tbody tr:last-child {
  border-bottom: 0;
}

.leaderboard-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.rank-badge,
.rank-num {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--white-64);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-bar {
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.52);
}

.forum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

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

.category-card {
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.category-card:hover,
.forum-card:hover {
  background: var(--panel-strong);
  transform: translateY(-1px);
}

.thread-list,
.sidebar,
.reply-list {
  display: grid;
  gap: 10px;
}

.forum-card,
.sidebar-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.forum-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  cursor: pointer;
}

.thread-avatar,
.reply-avatar {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.thread-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.34;
}

.thread-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
  color: var(--white-48);
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--white-64);
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 800;
}

.upvote {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--white-48);
  font-size: 11px;
  font-weight: 850;
}

.upvote button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.thread-detail-card,
.reply-card,
.reply-composer {
  border: 1px solid var(--light-line);
  border-radius: var(--radius-lg);
  background: var(--light-panel);
}

.thread-detail-card {
  padding: 30px;
}

.reply-card,
.reply-composer {
  padding: 20px;
}

.thread-detail-title {
  margin-bottom: 18px;
  color: #000;
  font-size: 28px;
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.reply-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.reply-avatar {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--light-line);
  color: rgba(0, 0, 0, 0.6);
}

.reply-meta {
  color: var(--light-soft);
  font-size: 12px;
}

.reply-body {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.reply-composer textarea {
  width: 100%;
  min-height: 96px;
  margin: 12px 0;
  padding: 13px 14px;
  border: 1px solid var(--light-line-strong);
  border-radius: var(--radius-sm);
  color: #000;
  outline: 0;
  resize: vertical;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: var(--white-48);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: var(--white-32);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.light-card {
  border: 1px solid var(--light-line);
  border-radius: var(--radius-lg);
  background: var(--light-panel);
}

.white-grid {
  display: grid;
  gap: 18px;
}

.desktop-hide {
  display: none;
}

@media (max-width: 900px) {
  .hero-layout,
  .split-layout,
  .page-hero-grid,
  .hues-header,
  .twin-header,
  .forum-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .tier-grid,
  .metric-grid,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 96px;
  }

  .iphone-body {
    transform: rotateY(-7deg) rotateX(2deg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .site-nav {
    height: 58px;
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .container,
  .container-narrow {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .feature-grid,
  .tier-grid,
  .metric-grid,
  .category-grid,
  .countdown {
    grid-template-columns: 1fr;
  }

  .phone-rail {
    gap: 22px;
    padding-inline: 16px;
  }

  .hue-item {
    flex-basis: 184px;
  }

  .phone-small .iphone-body,
  .hue-item .iphone-body {
    --phone-width: 184px;
    transform: none !important;
  }

  .iphone-body {
    --phone-width: 260px;
    transform: none !important;
  }

  .forum-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .upvote {
    grid-column: 2;
    justify-self: start;
    grid-auto-flow: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
