/* Salamin Labs — bubble noir (aligned to mark + wordmark) */
:root {
  --bg: #050507;
  --bg-lift: #0e0e14;
  --text: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.62);
  --line: rgba(247, 244, 239, 0.12);
  --gold: #efc14a;
  --gold-deep: #c4921a;
  --mint: #6fd9c5;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1080px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px; top: 12px; z-index: 100;
  background: var(--gold); color: #111;
  padding: 8px 12px; border-radius: 10px;
}

/* PNGs del logo vienen con fondo negro sólido → knockout */
.logo-knockout {
  mix-blend-mode: screen;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Ambient — quiet, not rainbow */
.stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.stage__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 28%, rgba(239, 193, 74, 0.22), transparent 58%),
    radial-gradient(ellipse 50% 40% at 0% 70%, rgba(111, 217, 197, 0.07), transparent 50%),
    linear-gradient(180deg, #0c0b12 0%, var(--bg) 42%, #07070c 100%);
}
.stage__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(5, 5, 7, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  height: 30px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.brand__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  user-select: none;
}
.brand__name {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.brand__dot-i {
  font-size: 0.92em;
  font-weight: 600;
}
.brand__labs {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  opacity: 0.72;
  padding-left: 1px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__links {
  display: flex;
  gap: 4px;
}
.nav__links a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.lang {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.lang button {
  min-width: 36px;
  padding: 6px 8px;
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.lang button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
}

@media (max-width: 720px) {
  .hide-sm { display: none !important; }
}

/* ——— Hero ———
   One composition: brand is the signal, art is the Salamin mark (not product chips). */
.hero {
  position: relative;
  min-height: calc(100svh - 58px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 48px 20px 88px;
}

.hero__plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.hero__aura {
  position: absolute;
  width: min(92vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(239, 193, 74, 0.28) 0%, rgba(239, 193, 74, 0.08) 32%, transparent 68%);
  filter: blur(8px);
  animation: aura-pulse 8s ease-in-out infinite;
}
.hero__plane-mark {
  position: relative;
  width: min(78vw, 560px);
  height: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.14;
  transform: translateY(4%);
  animation: plane-drift 11s var(--ease) infinite;
  mask-image: radial-gradient(circle at 50% 45%, black 35%, transparent 78%);
}
@keyframes aura-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes plane-drift {
  0%, 100% { transform: translateY(4%) rotate(-2deg); }
  50% { transform: translateY(0%) rotate(2deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
  animation: hero-in 0.9s var(--ease) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero__mark {
  width: clamp(88px, 18vw, 120px);
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(239, 193, 74, 0.35));
  animation: mark-float 5.5s ease-in-out infinite;
}
.hero__word {
  width: clamp(220px, 56vw, 340px);
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.45));
}
@keyframes mark-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  max-width: 16ch;
  color: rgba(247, 244, 239, 0.78);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

.hero__lede {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 28ch;
  font-weight: 400;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 26px;
  height: 40px;
  border: 1px solid rgba(247, 244, 239, 0.22);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.hero__scroll:hover { opacity: 0.9; }
.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 520px) {
  .hero { padding-bottom: 72px; }
  .hero__plane-mark { width: min(96vw, 420px); opacity: 0.11; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content { animation: none; }
}

/* Buttons — soft squircle (logo-like), not pill-cluster AI look */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s var(--ease), box-shadow 0.25s, background 0.2s, border-color 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, #f3d06a, var(--gold) 45%, var(--gold-deep));
  color: #1a1406;
  box-shadow: 0 10px 28px rgba(239, 193, 74, 0.28);
}
.btn--primary:hover {
  box-shadow: 0 14px 36px rgba(239, 193, 74, 0.4);
}
.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.28); }
.btn--block { width: 100%; }

/* Sections */
.section {
  padding: 96px 0;
}
.section--tight { padding: 72px 0; }

.section__head {
  margin-bottom: 40px;
  max-width: 36ch;
}
.section__head h2,
.studio h2,
.support h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.section__head p,
.studio p,
.support p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 10px !important;
}

/* Product + demo — demo is the interactive surface */
.product {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.product__icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin-bottom: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.product__copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  margin: 0 0 10px;
  line-height: 1.25;
  max-width: 22ch;
}
.product__copy > p {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 40ch;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: default;
  line-height: 0;
}

.store-badge__img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.store-badge--soon:disabled,
.store-badge--soon[aria-disabled="true"] {
  cursor: default;
  opacity: 0.9;
}

.store-soon {
  margin: 0 0 20px !important;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product__aside {
  margin: 0 !important;
}
.product__aside a {
  color: var(--mint);
  font-weight: 700;
  border-bottom: 1px solid rgba(111, 217, 197, 0.35);
}
.product__aside a:hover { border-bottom-color: var(--mint); }

/* iPhone screenshots gallery */
.shots {
  margin-top: 56px;
}
.shots__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 20px;
  text-align: center;
}
.shots__track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 4px 24px;
}
.app-spin {
  text-align: center;
  padding: 12px 0 4px;
}
.app-spin[hidden] { display: none; }
.app-spin__hint {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.app-spin__wheel-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
}
.app-spin__pin {
  position: absolute;
  top: -2px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #fff;
}
.app-spin__wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #efc14a 0 45deg,
    #14B8A6 45deg 90deg,
    #F59E0B 90deg 135deg,
    #3B82F6 135deg 180deg,
    #EC4899 180deg 225deg,
    #22C55E 225deg 270deg,
    #A855F7 270deg 315deg,
    #F97316 315deg 360deg
  );
  box-shadow: inset 0 0 0 6px rgba(22, 5, 64, 0.9), 0 0 24px color-mix(in srgb, var(--cat, #efc14a) 40%, transparent);
  transition: transform 2.2s cubic-bezier(0.12, 0.82, 0.18, 1);
}
.app-spin__wheel.is-spinning {
  transform: rotate(calc(var(--spin, 4) * 360deg + var(--land, 40deg)));
}

.app-lifelines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 12px;
}
.app-life {
  padding: 8px 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
}
.app-life:hover:not(:disabled) {
  border-color: #FFC93C;
}
.app-life:disabled,
.app-life.is-used {
  opacity: 0.35;
  cursor: default;
}
.app-answer.is-gone {
  visibility: hidden;
}

.phone {
  margin: 0;
  flex: 0 0 auto;
  width: min(220px, 44vw);
  text-align: center;
}
@media (min-width: 900px) {
  .phone { width: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  .app-spin__wheel { transition: none; }
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer__links a:hover { color: var(--text); }

.brand__mark {
  height: 30px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}
.phone__bezel {
  position: relative;
  border-radius: 28px;
  padding: 6px;
  background: linear-gradient(160deg, #2a2a32, #121218 55%, #0a0a0e);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.phone__bezel img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 22px;
  object-fit: contain;
  object-position: center top;
  background: #160540;
}
.phone figcaption {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.section__head--wide { max-width: 52ch; }
.apps-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  margin: -4px 0 14px !important;
}

.feature-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
  padding-left: 14px;
  border-left: 2px solid rgba(239, 193, 74, 0.35);
}
.feature-list strong {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
}

.demo {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(239, 193, 74, 0.14), transparent 60%),
    var(--bg-lift);
  border: 1px solid var(--line);
  text-align: center;
}
.demo-phone {
  text-align: center;
}
.demo__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.demo__hint {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.45);
}

/* ——— App UI replica (question screen) ——— */
.app-frame {
  margin: 0 auto;
  width: min(100%, 300px);
  border-radius: 28px;
  padding: 10px;
  background: #1a1228;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.app-screen {
  --cat: #14B8A6;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
  padding: 14px 12px 16px;
  text-align: left;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, color-mix(in srgb, var(--cat) 35%, transparent), transparent 55%),
    linear-gradient(180deg, #3B1178 0%, #160540 100%);
  font-family: var(--font-display);
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.app-brand {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.app-brand span { color: #FFC93C; }
.app-home {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.app-score { margin-bottom: 12px; }
.app-seat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 2px solid transparent;
}
.app-seat.is-active { border-color: #FB923C; }
.app-seat__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #1a0b44;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  display: block;
}
.app-seat__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.app-seat__pts {
  font-weight: 700;
  color: #FFC93C;
  font-variant-numeric: tabular-nums;
}
.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  justify-content: center;
}
.app-level {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #22C55E;
}
.app-cat {
  display: inline-block;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #14B8A6;
}

.app-q {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.app-answers {
  display: grid;
  gap: 8px;
}
.app-answer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: #2B1466;
  border: 0;
  box-shadow: 0 4px 0 #1a0b44;
  transition: transform 0.1s, background 0.15s;
}
.app-answer:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a0b44;
}
.app-answer:disabled { cursor: default; }
.app-answer__letter {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: color-mix(in srgb, var(--tint, #6D28D9) 85%, white);
  color: #1B0648;
}
.app-answer__text { line-height: 1.2; }
.app-answer.is-correct {
  background: #22C55E;
  box-shadow: 0 4px 0 #16A34A;
}
.app-answer.is-correct .app-answer__letter {
  background: #fff;
  color: #16A34A;
}
.app-answer.is-wrong {
  background: #B91C1C;
  box-shadow: 0 4px 0 #7F1D1D;
}
.app-answer.is-wrong .app-answer__letter {
  background: #fff;
  color: #B91C1C;
}
.app-answer.is-muted { opacity: 0.45; }

.app-feedback {
  text-align: center;
  margin: 14px 0 8px;
}
.app-feedback[hidden] { display: none; }
.app-feedback__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}
.app-feedback.is-ok .app-feedback__title { color: #4ade80; }
.app-feedback.is-bad .app-feedback__title { color: #f87171; }
.app-feedback__pts {
  margin: 4px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFC93C;
}
.app-feedback.is-bad .app-feedback__pts {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.app-next {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: #22C55E;
  box-shadow: 0 4px 0 #16A34A;
  cursor: pointer;
}
.app-next:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #16A34A;
}
.app-next[hidden] { display: none; }

.quiz__end {
  text-align: center;
  padding: 40px 8px 12px;
}
.quiz__end[hidden] { display: none; }
.quiz__end-title {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFC93C;
}
.quiz__end-msg {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.45;
  font-family: var(--font-body);
}

@media (max-width: 820px) {
  .product {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Studio + support — one job, no boxes */
.studio,
.support {
  max-width: 36ch;
}
.studio h2,
.support h2 { max-width: 16ch; }

.mail {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--mint);
  border-bottom: 1px solid rgba(111, 217, 197, 0.4);
}
.mail:hover { border-bottom-color: var(--mint); }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
}
.footer a:hover { color: var(--text); }

/* Privacy */
.legal {
  padding: 48px 0 80px;
  max-width: 720px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 8px;
}
.legal .fecha { color: var(--muted); margin-bottom: 28px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-top: 32px;
}
.legal a { color: var(--mint); }
.legal details {
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.legal details summary {
  cursor: pointer;
  font-family: var(--font-display);
  list-style: none;
}
.legal details summary::-webkit-details-marker { display: none; }
.legal details p { margin: 10px 0 0; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
