/* =========================================================
   Alquimia — Premium Mobile Styles (styles.css)
   Palette: black/graphite + gold + tiny blue accent
   ========================================================= */

/* 0) Root */
:root {
  /* Surfaces */
  --bg: #0a0b0e;
  --bg-2: #0c0e12;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.1);
  --border-2: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.58);

  /* Brand accents */
  --gold: #f2c14e;
  --gold-2: #e7b94b;
  --gold-soft: rgba(242, 193, 78, 0.18);

  /* Tiny blue (use sparingly) */
  --blue: #4fa3ff;
  --blue-soft: rgba(79, 163, 255, 0.12);

  /* Success */
  --ok: #2ee59d;

  /* Shadows */
  --shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
  --shadow-2: 0 12px 30px rgba(0, 0, 0, 0.45);
  --glow-gold:
    0 0 0 1px rgba(242, 193, 78, 0.18), 0 18px 60px rgba(242, 193, 78, 0.16);

  /* Radius */
  --r-xl: 26px;
  --r-lg: 20px;
  --r-md: 16px;
  --r-sm: 12px;

  /* Spacing */
  --pad: 18px;
  --container: 980px;

  /* Type */
  --font:
    "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs: 15px;
  --fs-lg: 18px;
  --fs-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 140ms;
  --t: 220ms;
  --t-slow: 520ms;

  /* Safe areas */
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

/* 1) Reset */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
::selection {
  background: rgba(242, 193, 78, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* 2) Base layout */
.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--pad);
}
.main {
  padding-bottom: calc(120px + var(--safe-bottom));
}
.icon {
  width: 20px;
  height: 20px;
  display: block;
}
.icon--logo {
  width: 22px;
  height: 22px;
}

/* 3) Background (subtle, not “cut”) */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.bg__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 700px at 50% -10%,
      rgba(255, 255, 255, 0.05),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.bg__accent {
  position: absolute;
  inset: -10%;
  opacity: 0.55;
  filter: blur(46px);
  transform: translateZ(0);
}
.bg__accent--gold {
  background: radial-gradient(
    420px 260px at 22% 20%,
    rgba(242, 193, 78, 0.22),
    transparent 70%
  );
}
.bg__accent--blue {
  background: radial-gradient(
    380px 240px at 86% 32%,
    rgba(79, 163, 255, 0.12),
    transparent 70%
  );
}
.bg__noise {
  opacity: 0.035;
  position: absolute;
  inset: -20%;
  opacity: 0.06;
  background-image: url("assets/noise.png");
  background-size: 240px 240px;
  mix-blend-mode: overlay;
}

/* 4) Loop accents (tiny, premium) */
.loops {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.loop {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.loop--1 {
  width: 56px;
  height: 56px;
  left: 12px;
  top: 92px;
}
.loop--2 {
  width: 44px;
  height: 44px;
  right: 18px;
  top: 160px;
}
.loop--3 {
  width: 64px;
  height: 64px;
  right: 14px;
  bottom: 160px;
  background: rgba(242, 193, 78, 0.06);
  border-color: rgba(242, 193, 78, 0.14);
}
.loop--float {
  animation: floaty 6s var(--ease2) infinite;
}
.loop--pulse {
  animation: pulsey 3.2s var(--ease2) infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(0, -12px, 0);
    opacity: 0.95;
  }
}
@keyframes pulsey {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.95;
  }
}

/* 5) Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: calc(10px + var(--safe-top));
  padding-bottom: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 11, 14, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(242, 193, 78, 0.16),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(242, 193, 78, 0.18);
  box-shadow: var(--glow-gold);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand__name {
  font-weight: 850;
  letter-spacing: 0.2px;
  font-size: 15px;
}
.brand__meta {
  font-size: 12px;
  color: var(--muted-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  transition:
    transform var(--t) var(--ease),
    border-color var(--t) var(--ease),
    background var(--t) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.iconbtn:active {
  transform: translateY(1px) scale(0.99);
}
.iconbtn--accent {
  background: linear-gradient(
    180deg,
    rgba(242, 193, 78, 0.16),
    rgba(255, 255, 255, 0.03)
  );
  border-color: rgba(242, 193, 78, 0.22);
}

/* 6) Hero */
.hero {
  padding: 18px 0 10px;
}
.hero__grid {
  display: grid;
  gap: 16px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  width: fit-content;
}
.kicker__icon {
  width: 30px;
  height: 30px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 193, 78, 0.1);
  border: 1px solid rgba(242, 193, 78, 0.16);
}
.kicker__text {
  font-size: 13px;
  color: var(--muted);
}
.hero__title {
  margin: 12px 0 0;
  font-size: clamp(26px, 7vw, 40px);
  letter-spacing: -0.9px;
  line-height: 1.06;
}
.hero__lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  transition:
    transform var(--t) var(--ease),
    background var(--t) var(--ease),
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: translateY(1px) scale(0.995);
}
.btn__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.btn__title {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.btn__hint {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 3px;
}
.btn__arrow {
  margin-left: auto;
  opacity: 0.8;
}
.btn--primary {
  background: linear-gradient(
    180deg,
    rgba(242, 193, 78, 0.2),
    rgba(255, 255, 255, 0.03)
  );
  border-color: rgba(242, 193, 78, 0.22);
  box-shadow: var(--glow-gold);
}
.btn--glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border-color: rgba(255, 255, 255, 0.12);
}
.btn--mini {
  padding: 10px 12px;
  border-radius: 16px;
  gap: 10px;
}
.btn--mini .btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
}
.btn--ghost {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

/* Trust cards */
.hero__trust {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.trustcard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2);
}
.trustcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.trustcard__body {
  min-width: 0;
}
.trustcard__title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.trustcard__desc {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.35;
}
.trustcard__cta {
  margin-left: auto;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 193, 78, 0.22);
  background: rgba(242, 193, 78, 0.1);
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
  transition: transform var(--t-fast) var(--ease);
}
.trustcard__cta:active {
  transform: translateY(1px);
}

/* Hero media */
.hero__media {
  margin-top: 6px;
}
.media-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  position: relative;
}
.media-card__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  transform: scale(1.02);
}
.media-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 14, 0),
    rgba(10, 11, 14, 0.55)
  );
}
.media-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(46, 229, 157, 0.9);
  box-shadow: 0 0 0 6px rgba(46, 229, 157, 0.1);
  animation: blink 2.4s var(--ease2) infinite;
}
@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
.media-card__badge-text {
  font-size: 12px;
  color: var(--muted);
}

/* 7) Sections */
.section {
  padding: 22px 0 10px;
}
.section--tight {
  padding: 14px 0 10px;
}
.section--final {
  padding: 22px 0 26px;
}
.section__head {
  margin-bottom: 12px;
}
.section__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.section__subtitle {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.45;
}

/* 8) Structured cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cardx {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-2);
}
.cardx__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
.cardx__content {
  padding: 16px 16px;
}
.cardx__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cardx__icon {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(242, 193, 78, 0.1);
  border: 1px solid rgba(242, 193, 78, 0.16);
}
.cardx__label {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.2px;
}
.cardx__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.cardx__text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.cardx__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cardx--wide {
  display: flex;
  flex-direction: column;
}
.cardx__media--wide img {
  aspect-ratio: 16/10;
}

/* list inside card */
.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list__item {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(242, 193, 78, 0.7);
  box-shadow: 0 0 0 5px rgba(242, 193, 78, 0.12);
}

/* pills row */
.pillrow {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pill__icon {
  width: 30px;
  height: 30px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pill__text {
  font-size: 13px;
  font-weight: 800;
}

/* 9) Gallery */
.gallery {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  padding: 12px;
}
.gallery__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.gallery__track::-webkit-scrollbar {
  height: 0;
}
.shot {
  scroll-snap-align: start;
  min-width: 86%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  position: relative;
}
.shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.shot__cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
  background: rgba(10, 11, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.iconbtn--soft {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.gallery__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.dotx {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition:
    width var(--t) var(--ease),
    background var(--t) var(--ease);
}
.dotx.is-active {
  width: 18px;
  background: linear-gradient(
    90deg,
    rgba(242, 193, 78, 0.95),
    rgba(79, 163, 255, 0.35)
  );
}

/* 10) Follow card */
.follow {
  margin-top: 12px;
}
.follow__card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(242, 193, 78, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-2);
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.follow__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.follow__text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.follow__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* 11) Tiles (quick hub) */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
  transition:
    transform var(--t) var(--ease),
    border-color var(--t) var(--ease),
    background var(--t) var(--ease);
}
.tile:active {
  transform: translateY(1px) scale(0.995);
}
.tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tile__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tile__title {
  font-weight: 850;
  letter-spacing: 0.2px;
}
.tile__desc {
  font-size: 12px;
  color: var(--muted-2);
}
.tile__arrow {
  margin-left: auto;
  opacity: 0.8;
}

/* 12) Final */
.final {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.final__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.final__text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.final__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* 13) Floating */
.floating {
  position: fixed;
  right: 14px;
  bottom: calc(14px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--t) var(--ease);
}
.fab:active {
  transform: translateY(1px) scale(0.99);
}
.fab--primary {
  background: linear-gradient(
    180deg,
    rgba(31, 216, 74, 0.39),
    rgba(31, 83, 51, 0.23)
  );
  border-color: rgba(46, 229, 157, 0.22);
}
.fab--ghost {
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
  border-radius: 18px;
}
.fab__icon {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fab__text {
  font-size: 13px;
  font-weight: 850;
}

/* 14) Footer */
.footer {
  padding: 18px 0 calc(18px + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 11, 14, 0.3);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand {
  font-weight: 900;
  letter-spacing: 0.2px;
}
.footer__meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted-2);
}
.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__link {
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 2px;
}

/* 15) Animations on scroll (JS will add .is-in) */
/* Animations: visible by default (no JS = still readable) */
[data-animate="in"] {
  opacity: 1;
  transform: none;
}

/* Only hide/animate when JS is active */
.has-js [data-animate="in"] {
  opacity: 0;
  transform: translateY(12px);
}
.has-js .is-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--t-slow) var(--ease2),
    transform var(--t-slow) var(--ease2);
}

/* Delays */
.has-js [data-delay="80"].is-in {
  transition-delay: 80ms;
}
.has-js [data-delay="120"].is-in {
  transition-delay: 120ms;
}
.has-js [data-delay="140"].is-in {
  transition-delay: 140ms;
}
.has-js [data-delay="180"].is-in {
  transition-delay: 180ms;
}
.has-js [data-delay="200"].is-in {
  transition-delay: 200ms;
}
.has-js [data-delay="260"].is-in {
  transition-delay: 260ms;
}

[data-delay="80"].is-in {
  transition-delay: 80ms;
}
[data-delay="120"].is-in {
  transition-delay: 120ms;
}
[data-delay="140"].is-in {
  transition-delay: 140ms;
}
[data-delay="180"].is-in {
  transition-delay: 180ms;
}
[data-delay="200"].is-in {
  transition-delay: 200ms;
}
[data-delay="260"].is-in {
  transition-delay: 260ms;
}

/* 16) Responsive */
@media (min-width: 520px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
  .hero__cta {
    grid-template-columns: 1fr 1fr;
  }
  .final__actions {
    grid-template-columns: 1fr 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shot {
    min-width: 62%;
  }
  .cardx--wide {
    flex-direction: row;
  }
  .cardx__media--wide {
    width: 46%;
  }
  .cardx__media--wide img {
    aspect-ratio: 4/3;
    height: 100%;
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 14px;
  }
  .brand__meta {
    display: none;
  }
}

/* 17) Desktop-only hover polish */
@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }
  .tile:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.16);
  }
  .iconbtn:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
  }
}

/* 18) Accessibility focus */
:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(242, 193, 78, 0.14),
    0 0 0 1px rgba(242, 193, 78, 0.3);
  border-color: rgba(242, 193, 78, 0.3) !important;
}

/* ✅ Fondo: solo base (sin “manchas” flotantes) */
.bg__accent {
  display: none;
}

.bg__noise {
  opacity: 0.035;
}

/* =========================================
   SOLID UI: tarjetas/botones sólidos (premium)
   ========================================= */
:root {
  --surface-1: #101218; /* tarjetas */
  --surface-2: #0d0f14; /* botones / header buttons */
  --surface-3: #121520; /* énfasis suave */
}

/* Botones del header */
.iconbtn {
  background: var(--surface-2) !important;
}

/* Marca (logo) sin degradado */
.brand__mark {
  background: var(--surface-2) !important;
  border-color: rgba(242, 193, 78, 0.22) !important;
  box-shadow:
    0 0 0 1px rgba(242, 193, 78, 0.14),
    0 14px 40px rgba(0, 0, 0, 0.55) !important;
}

/* Botones principales: sólidos */
.btn {
  background: var(--surface-2) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4) !important;
}
.btn--glass {
  background: var(
    --surface-2
  ) !important; /* ya no “glass” real, queda sólido */
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.btn--primary {
  background: var(--surface-3) !important;
  border-color: rgba(242, 193, 78, 0.3) !important;
  box-shadow:
    0 0 0 1px rgba(242, 193, 78, 0.12),
    0 18px 56px rgba(0, 0, 0, 0.55) !important;
}

/* Tarjetas sólidas */
.trustcard,
.cardx,
.gallery,
.follow__card,
.tile,
.final {
  background: var(--surface-1) !important;
}

/* Follow card sin degradado */
.follow__card {
  border-color: rgba(242, 193, 78, 0.18) !important;
}

/* Quitar cualquier brillo “tipo degradado” en pills */
.pill,
.kicker,
.media-card__badge,
.shot__cap {
  background: rgba(16, 18, 24, 0.82) !important;
}

/* Por si quedó algo del bloque de loops */
.loops,
.loop {
  display: none !important;
}
