@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0a0a0b;
  --bg-soft: #141417;
  --panel: #111214;
  --text: #f4f4f5;
  --muted: #a5a5ad;
  --line: #232329;
  --white: #ffffff;
  --accent: #d9d9dd;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  --space-1: clamp(0.45rem, 0.8vw, 0.6rem);
  --space-2: clamp(0.7rem, 1vw, 0.95rem);
  --space-3: clamp(1rem, 1.6vw, 1.35rem);
  --space-4: clamp(1.45rem, 2.2vw, 2rem);
  --space-5: clamp(2rem, 3.6vw, 3rem);
  --space-6: clamp(3rem, 5vw, 4.6rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Inter", "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #18181d 0%, #090909 54%);
  color: var(--text);
  line-height: 1.62;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand-mark-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, #fafafa, #75767e);
}

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

.nav-links > a,
.nav-dropdown > summary {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 8px 11px;
  border-radius: 10px;
  transition: 0.24s ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::after {
  content: "▾";
  font-size: 0.7rem;
  transform: translateY(1px);
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 220px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 18, 22, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.2s ease;
}

.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #d0d1d8;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.24s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.35) 50%, transparent 55% 100%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(130%);
}

.btn-primary {
  background: linear-gradient(125deg, #ffffff, #d7d7dd);
  color: #08080b;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  padding: var(--space-6) 0 var(--space-5);
  animation: riseIn 0.62s ease both;
}

.kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d4d4da;
  border-radius: 999px;
  font-size: 0.7rem;
  padding: 5px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.11;
  text-wrap: balance;
}

h1 {
  margin-top: var(--space-3);
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  letter-spacing: -0.035em;
}

.section {
  padding: var(--space-5) 0;
  animation: riseIn 0.8s ease both;
}

.section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  letter-spacing: -0.025em;
}

.section-intro {
  color: var(--muted);
  margin-top: var(--space-3);
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.grid {
  display: grid;
  gap: var(--space-3);
}

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

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

.flow-top {
  margin-top: var(--space-4);
}

.card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 1.8vw, 1.45rem);
  box-shadow: var(--shadow);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.34);
}

.card h3 {
  margin-bottom: 9px;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.inline-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stats {
  margin-top: var(--space-4);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.24s ease;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.stat strong {
  display: block;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: #fff;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 42%);
  pointer-events: none;
}

.product-card .meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c7c7cd;
  margin-bottom: 7px;
  font-weight: 700;
}

.quote-strip {
  margin-top: var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px;
  color: #dddddf;
  background: rgba(255, 255, 255, 0.02);
}

.site-footer {
  margin-top: var(--space-6);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  color: #bbbcc3;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

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

.eyebrow {
  margin: 0;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9b9ca4;
  font-weight: 700;
}

.centered-copy {
  text-align: center;
  max-width: 790px;
  margin-inline: auto;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0f1118;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 9 / 18;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: var(--space-3);
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.24s ease;
}

.faq details[open] {
  border-color: rgba(255, 255, 255, 0.34);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-3);
}

.tag {
  font-size: 0.77rem;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d8d8dc;
}

.legal-body {
  margin-top: var(--space-3);
}

.legal-body h2 {
  margin-top: var(--space-4);
  font-size: 1.15rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-body ul {
  padding-left: 18px;
}

/* Home page unique style */
.theme-home {
  background: radial-gradient(circle at 10% 0%, #1d1d22 0%, #0b0b0d 56%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4);
  align-items: stretch;
}

.home-manifesto ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.home-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  overflow: hidden;
}

.home-marquee p {
  margin: 0;
  color: #b7b8be;
  letter-spacing: 0.09em;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.home-doing-card {
  min-height: 270px;
}

/* Fushly-specific unique style */
.theme-fushly {
  --bg: #070e20;
  --bg-soft: #121d39;
  --text: #f9fbff;
  --muted: #b8c4df;
  --line: #25365e;
  background: radial-gradient(circle at 12% 0%, #1d2a4f 0%, #0a1328 40%, #080d1d 100%);
  font-family: "Inter", "Manrope", sans-serif;
}

.theme-fushly .site-header {
  background: rgba(8, 13, 30, 0.74);
  border-bottom-color: rgba(136, 171, 255, 0.24);
}

.theme-fushly .kicker,
.theme-fushly .tag,
.theme-fushly .stat,
.theme-fushly .faq details,
.theme-fushly .nav-dropdown-menu {
  border-color: rgba(131, 171, 255, 0.35);
}

.theme-fushly .nav-links > a:hover,
.theme-fushly .nav-links > a:focus-visible,
.theme-fushly .nav-dropdown > summary:hover,
.theme-fushly .nav-dropdown > summary:focus-visible,
.theme-fushly .nav-dropdown-menu a:hover,
.theme-fushly .nav-dropdown-menu a:focus-visible {
  background: rgba(118, 159, 250, 0.19);
}

.theme-fushly .btn-primary {
  background: linear-gradient(130deg, #90b4ff, #5ce4ff 90%);
}

.theme-fushly .card,
.theme-fushly .product-card {
  background: linear-gradient(145deg, rgba(129, 163, 255, 0.16), rgba(24, 50, 113, 0.3));
  border-color: rgba(128, 165, 255, 0.25);
}

.theme-fushly .product-card::before {
  background: radial-gradient(circle at top right, rgba(114, 226, 255, 0.26), transparent 50%);
}

.theme-fushly .quote-strip {
  border-color: rgba(132, 163, 255, 0.34);
  background: rgba(51, 79, 155, 0.25);
}

.theme-fushly .stat strong {
  color: #e8f4ff;
}

.theme-fushly .site-footer {
  border-top-color: rgba(131, 165, 255, 0.24);
}

.page-fushly .fushly-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-4);
  align-items: stretch;
}

.page-fushly .fushly-score ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-fushly .fushly-score li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(153, 187, 255, 0.32);
  padding-bottom: 8px;
}

.page-fushly .fushly-score strong {
  color: #f5fbff;
  font-size: 1.24rem;
}

.page-fushly .fushly-score span {
  color: #b8c4df;
  font-size: 0.86rem;
}

.page-fushly .fushly-strip {
  border-top: 1px solid rgba(136, 171, 255, 0.24);
  border-bottom: 1px solid rgba(136, 171, 255, 0.24);
  padding: 14px 0;
}

.page-fushly .fushly-strip p {
  margin: 0;
  letter-spacing: 0.08em;
  color: #bed1ff;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.page-fushly .f-credit-card strong {
  display: inline-block;
  margin-top: 10px;
  color: #e7f7ff;
  font-size: 1.32rem;
}

.page-fushly .f-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.page-fushly .f-steps span {
  display: inline-block;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: #a4c1ff;
  margin-bottom: 8px;
}

/* Studio Cam unique style while still fushly-family */
.theme-studiocam {
  background: radial-gradient(circle at 20% 5%, #18459d 0%, #0f2d67 35%, #08142d 100%);
}

.theme-studiocam .btn-primary {
  background: linear-gradient(130deg, #2ba8ff, #8ce8ff);
}

.theme-studiocam .card,
.theme-studiocam .product-card {
  background: linear-gradient(145deg, rgba(41, 139, 255, 0.18), rgba(7, 37, 90, 0.45));
  border-color: rgba(112, 195, 255, 0.34);
}

.theme-studiocam .quote-strip,
.theme-studiocam .stat,
.theme-studiocam .kicker,
.theme-studiocam .tag,
.theme-studiocam .faq details,
.theme-studiocam .nav-dropdown-menu {
  border-color: rgba(126, 214, 255, 0.4);
}

.page-studiocam .studio-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: var(--space-4);
  align-items: stretch;
}

.page-studiocam .studio-hero-preview {
  padding: 10px;
}

.page-studiocam .studio-hero-preview img {
  width: min(100%, 360px);
  max-height: min(62vh, 520px);
  margin: 0 auto;
  border-radius: 12px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.page-studiocam .studio-stats-band {
  padding: 10px 0;
  border-top: 1px solid rgba(126, 214, 255, 0.31);
  border-bottom: 1px solid rgba(126, 214, 255, 0.31);
}

.page-studiocam .studio-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.page-studiocam .studio-stat-grid article {
  border: 1px solid rgba(126, 214, 255, 0.31);
  background: rgba(21, 88, 190, 0.2);
  border-radius: 12px;
  padding: 12px;
}

.page-studiocam .studio-stat-grid strong {
  display: block;
  color: #ecfbff;
}

.page-studiocam .studio-stat-grid span {
  color: #bfe9ff;
  font-size: 0.86rem;
}

.page-studiocam .studio-mode-card {
  min-height: 180px;
}

.page-studiocam .studio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* RecentRaise unique style */
.theme-recentraise {
  --text: #101010;
  --muted: #4f5562;
  --line: #d8dde8;
  background: linear-gradient(180deg, #f7f9fc 0%, #f0f4fb 100%);
  font-family: "IBM Plex Sans", "Inter", sans-serif;
}

.theme-recentraise .site-header {
  background: rgba(248, 250, 253, 0.9);
  border-bottom-color: #d6deeb;
}

.theme-recentraise .brand-mark,
.theme-recentraise .nav-links > a,
.theme-recentraise .nav-dropdown > summary {
  color: #1a2437;
}

.theme-recentraise .nav-links > a:hover,
.theme-recentraise .nav-links > a:focus-visible,
.theme-recentraise .nav-dropdown > summary:hover,
.theme-recentraise .nav-dropdown > summary:focus-visible {
  background: #dfe8f7;
}

.theme-recentraise .nav-dropdown-menu {
  background: #f6f9ff;
  border-color: #c6d3e8;
}

.theme-recentraise .nav-dropdown-menu a {
  color: #1f3354;
}

.theme-recentraise .nav-dropdown-menu a:hover,
.theme-recentraise .nav-dropdown-menu a:focus-visible {
  background: #dee9fb;
}

.theme-recentraise .kicker,
.theme-recentraise .tag,
.theme-recentraise .stat,
.theme-recentraise .faq details {
  border-color: #c4d0e6;
  color: #334563;
  background: #eef3fb;
}

.theme-recentraise .card,
.theme-recentraise .product-card {
  box-shadow: none;
  border-color: #d6deeb;
  background: #ffffff;
}

.theme-recentraise .product-card::before {
  background: radial-gradient(circle at top right, rgba(134, 158, 199, 0.12), transparent 55%);
}

.theme-recentraise .btn-primary {
  background: linear-gradient(130deg, #20365d, #3f5d95);
  color: #fff;
}

.theme-recentraise .btn-secondary {
  border-color: #c8d5ec;
  color: #25395c;
  background: #eef3fb;
}

.theme-recentraise .quote-strip {
  border-color: #c8d7ef;
  background: #eef4ff;
  color: #2a3a58;
}

.theme-recentraise .site-footer {
  border-top-color: #d6deeb;
  color: #415370;
}

.theme-recentraise .footer-links a:hover,
.theme-recentraise .footer-links a:focus-visible {
  color: #192741;
}

.page-recentraise .rr-feed {
  padding-top: 8px;
}

.page-recentraise .rr-table-wrap {
  border: 1px solid #cfd8ea;
  border-radius: 12px;
  overflow: auto;
  background: #fff;
}

.page-recentraise .rr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.page-recentraise .rr-table th,
.page-recentraise .rr-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e3e9f4;
  text-align: left;
  white-space: nowrap;
}

.page-recentraise .rr-table th {
  background: #eef3fb;
  color: #334563;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-recentraise .rr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.page-recentraise .rr-panel {
  min-height: 210px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

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

@media (max-width: 1000px) {
  .grid-3,
  .page-fushly .f-steps,
  .page-studiocam .studio-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery,
  .page-studiocam .studio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-grid,
  .page-fushly .fushly-hero-grid,
  .page-studiocam .studio-hero-grid,
  .page-recentraise .rr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1140px, 94vw);
  }

  .site-header-inner {
    min-height: 66px;
    flex-wrap: wrap;
    padding: 12px 0;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
    gap: 8px;
  }

  .nav-links > a,
  .nav-dropdown > summary {
    font-size: 0.84rem;
    padding: 7px 10px;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    display: grid;
  }

  .hero {
    padding-top: var(--space-5);
  }

  .section {
    padding: var(--space-4) 0;
  }

  .section-intro {
    max-width: 100%;
  }

  .inline-actions {
    width: 100%;
  }

  .inline-actions .btn {
    flex: 1 1 100%;
  }

  .home-marquee p,
  .page-fushly .fushly-strip p {
    white-space: normal;
    text-align: center;
    animation: none;
    letter-spacing: 0.05em;
  }

  .grid-2,
  .grid-3,
  .stats,
  .page-fushly .f-steps,
  .page-studiocam .studio-stat-grid,
  .page-recentraise .rr-grid {
    grid-template-columns: 1fr;
  }

  .gallery,
  .page-studiocam .studio-gallery {
    grid-template-columns: 1fr;
  }

  .page-recentraise .rr-table {
    min-width: 640px;
  }

  .page-studiocam .studio-hero-preview img {
    width: min(100%, 300px);
    max-height: 52vh;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.86rem, 9vw, 2.35rem);
  }

  .card {
    padding: 1rem;
  }

  .page-studiocam .studio-hero-preview img {
    width: min(100%, 270px);
    max-height: 46vh;
  }

  .page-recentraise .rr-table {
    min-width: 560px;
  }
}
