  /* tokens (palette, fonts, reset, @keyframes pulse) live in styles/base.css */

  /* page-wide background */
  .page-bg {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background:
      radial-gradient(700px 500px at 80% -10%, rgba(242,107,31,0.14), transparent 60%),
      radial-gradient(500px 400px at -10% 90%, rgba(242,107,31,0.06), transparent 60%),
      var(--black);
  }
  .page-grid {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0,0,0,0.7), transparent 75%);
            mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0,0,0,0.7), transparent 75%);
  }

  .shell {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 20px 40px;
  }

  /* ===== PROFILE HEADER (name-behind-photo) ===== */
  .profile {
    text-align: center;
    padding: 4px 0 20px;
  }
  .hero-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    margin: 0 auto 4px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-stage::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(242,107,31,0.08), transparent 70%);
    z-index: 0;
  }
  .logo-placeholder {
    position: relative;
    z-index: 2;
    font-family: var(--mono-font);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--silver);
    opacity: 0.4;
    padding: 48px 72px;
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 8px;
  }
  .hero-logo {
    position: relative;
    z-index: 2;
    height: 70%;
    width: auto;
    max-width: 70%;
    object-fit: contain;
    filter:
      drop-shadow(0 0 28px rgba(242,107,31,0.35))
      drop-shadow(0 12px 26px rgba(0,0,0,0.55));
  }
  .stage-silh {
    position: relative;
    z-index: 2;
    height: 82%;
    width: auto;
    filter: drop-shadow(0 14px 30px rgba(0,0,0,0.6)) drop-shadow(0 0 22px rgba(242,107,31,0.2));
  }
  .stage-live {
    position: absolute;
    top: 18px; right: 18px;
    padding: 5px 11px;
    background: rgba(5,5,5,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--orange-line);
    color: var(--orange);
    font-family: var(--display-font);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 3;
    display: flex; align-items: center; gap: 7px;
  }
  .stage-live::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
    animation: pulse 2s ease-in-out infinite;
  }

  .profile-handle {
    font-family: var(--mono-font);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--silver);
    margin-top: 4px;
    opacity: 0.75;
  }
  .profile-bio {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--silver);
    max-width: 40ch;
    margin: 14px auto 0;
  }
  .profile-bio strong { color: var(--bone); font-weight: 600; }

  /* credibility chips */
  .chips {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 10px;
    background: var(--orange-smoke);
    border: 1px solid var(--orange-line);
    color: var(--orange);
    font-family: var(--display-font);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
  }
  .chip.neutral {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    color: var(--silver);
  }
  .chip::before {
    content: "";
    width: 5px; height: 5px; border-radius: 50%;
    background: currentColor;
    opacity: 0.8;
  }

  /* ===== SECTION LABELS ===== */
  .section-label {
    font-family: var(--display-font);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--silver);
    opacity: 0.6;
    margin: 32px 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before,
  .section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }

  /* ===== CINEMATIC FEATURE CARD ===== */
  .feature {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--black);
    box-shadow:
      0 30px 80px rgba(0,0,0,0.6),
      0 0 0 1px rgba(242,107,31,0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    max-height: 620px;
  }
  .feature:hover {
    transform: translateY(-4px);
    border-color: var(--orange-line);
    box-shadow:
      0 40px 100px rgba(0,0,0,0.7),
      0 0 0 1px rgba(242,107,31,0.3),
      0 20px 60px rgba(242,107,31,0.18);
  }

  .feature-image {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 35%, #2d2d32 0%, #141418 55%, #050505 100%);
    overflow: hidden;
  }
  .feature-image::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.6), transparent 75%);
            mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.6), transparent 75%);
  }
  .feature-image .silh {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transform-origin: center 40%;
  }
  .feature-image .vignette {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 30%, transparent 25%, rgba(5,5,5,0.55) 100%),
      linear-gradient(180deg, rgba(5,5,5,0.2) 0%, transparent 30%, rgba(5,5,5,0.4) 60%, rgba(5,5,5,0.98) 100%);
  }
  .feature-image .glow {
    position: absolute;
    right: -10%; top: -10%;
    width: 80%; height: 70%;
    background: radial-gradient(circle, rgba(242,107,31,0.28), transparent 65%);
    filter: blur(30px);
  }
  .feature-image .glow-bottom {
    position: absolute;
    left: -20%; bottom: -30%;
    width: 140%; height: 60%;
    background: radial-gradient(ellipse, rgba(242,107,31,0.18), transparent 65%);
    filter: blur(40px);
  }
  .feature-badge {
    position: absolute;
    top: 18px; left: 18px;
    padding: 7px 12px;
    background: rgba(5,5,5,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid var(--orange-line);
    color: var(--orange);
    font-family: var(--display-font);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 3;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .feature-badge::before {
    content: "";
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
  }
  .feature-corners span {
    position: absolute;
    width: 14px; height: 14px;
    border-color: var(--orange);
    border-style: solid;
    opacity: 0.75;
    z-index: 3;
  }
  .feature-corners span:nth-child(1) { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
  .feature-corners span:nth-child(2) { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
  .feature-corners span:nth-child(3) { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

  .feature-body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 26px 26px;
    z-index: 2;
  }
  .feature-eyebrow {
    font-family: var(--mono-font);
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
  }
  .feature-eyebrow::before {
    content: "";
    width: 16px; height: 1px;
    background: var(--orange);
  }
  .feature-title {
    font-family: var(--display-font);
    font-weight: 700;
    font-size: clamp(34px, 8vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--bone);
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  }
  .feature-title .anchor { color: var(--orange); }
  .feature-desc {
    display: none;
  }
  .feature-meta {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .feature-price {
    display: flex; align-items: baseline; gap: 10px;
  }
  .feature-price .from {
    font-size: 11px;
    color: var(--silver);
    opacity: 0.55;
    text-decoration: line-through;
    font-family: var(--mono-font);
  }
  .feature-price .amount {
    font-family: var(--display-font);
    font-weight: 700;
    font-size: 28px;
    color: var(--bone);
    letter-spacing: -0.01em;
  }
  .feature-price .amount small {
    font-size: 12px;
    color: var(--silver);
    font-weight: 500;
    opacity: 0.75;
  }
  .feature-go {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--bone);
    border: 0;
    border-radius: 12px;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(242,107,31,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
    transition: transform 150ms ease, box-shadow 150ms ease;
    cursor: pointer;
  }
  .feature:hover .feature-go {
    transform: translateX(3px);
    box-shadow: 0 14px 30px rgba(242,107,31,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
  }
  .feature-go svg { width: 14px; height: 14px; }

  /* ===== DANIEL AQUI FULL-BLEED FOOTER ===== */
  .signoff {
    position: relative;
    width: 100%;
    margin-top: 220px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--bone);
  }
  .signoff::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 85% 50%, rgba(5,5,5,0.25), transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 0%, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
  }
  .signoff-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 24px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: end;
  }
  .signoff-copy {
    position: relative;
    z-index: 2;
    padding-top: 36px;
    padding-bottom: 12px;
  }
  .signoff-title {
    font-family: var(--display-font);
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--bone);
    margin: 0 0 10px;
    text-transform: none;
  }
  .signoff-title .light { font-weight: 500; opacity: 0.85; display: block; font-size: 0.68em; letter-spacing: 0; margin-bottom: 6px; }
  .signoff-body {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    margin: 0 0 8px;
    max-width: 46ch;
  }
  .signoff-body strong { color: var(--bone); font-weight: 700; }
  .signoff-sig {
    margin-top: 12px;
    font-family: var(--display-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bone);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .signoff-sig::after {
    content: "";
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.8);
  }

  .signoff-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    justify-self: center;
    align-self: end;
    width: 100%;
    max-width: 360px;
    margin-top: -200px;
    margin-bottom: -26px;
    z-index: 2;
  }
  .photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed rgba(255,255,255,0.45);
    border-radius: 8px;
    background: rgba(0,0,0,0.18);
    color: rgba(255,255,255,0.8);
    font-family: var(--mono-font);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .photo-placeholder svg { width: 48px; height: 48px; color: rgba(255,255,255,0.7); }
  .signoff-photo svg.silh {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  }
  .signoff-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter:
      drop-shadow(1.5px 0 0 #fff)
      drop-shadow(-1.5px 0 0 #fff)
      drop-shadow(0 1.5px 0 #fff)
      drop-shadow(0 -1.5px 0 #fff);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
  }
  .signoff-photo .label {
    position: absolute;
    font-family: 'Caveat', 'Segoe Script', cursive;
    font-size: 17px;
    color: var(--bone);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  .signoff-photo .label svg { width: 42px; height: 22px; }
  .signoff-photo .label.l1 { top: 8%; left: -30%; }
  .signoff-photo .label.l2 { top: 35%; right: -5%; }
  .signoff-photo .label.l3 { top: 18%; right: -25%; }

  .signoff-footer-line {
    position: relative;
    text-align: center;
    padding: 12px 24px;
    font-family: var(--mono-font);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .signoff-footer-line .mark {
    font-family: var(--display-font);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--bone);
  }

  @media (max-width: 720px) {
    .signoff-inner {
      grid-template-columns: 1fr;
      padding: 40px 24px 0;
      gap: 16px;
    }
    .signoff-photo {
      max-width: 280px;
      margin-top: -150px;
      margin-bottom: 16px;
      justify-self: center;
    }
    .signoff-photo .label.l1 { left: -5%; }
    .signoff-photo .label.l3 { right: -5%; }
  }

  /* ===== LINK CARDS ===== */
  .stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  [data-density="compact"] .stack { gap: 6px; }
  [data-density="spacious"] .stack { gap: 16px; }

  .link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--graphite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    color: var(--bone);
    transition: all 180ms ease;
    cursor: pointer;
  }
  .link-card:hover {
    border-color: var(--orange-line);
    background: #1d1d20;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  }
  .link-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(242,107,31,0.1);
    border: 1px solid var(--orange-line);
    display: grid; place-items: center;
    color: var(--orange);
  }
  .link-icon svg { width: 18px; height: 18px; }
  .link-body { flex: 1; min-width: 0; }
  .link-title {
    font-family: var(--display-font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bone);
    line-height: 1.1;
  }
  .link-sub {
    font-size: 12.5px;
    color: var(--silver);
    margin-top: 4px;
    opacity: 0.8;
    line-height: 1.4;
  }
  .link-meta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--silver);
  }
  .link-price {
    font-family: var(--display-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--bone);
  }
  .link-price small { color: var(--silver); font-weight: 500; opacity: 0.7; font-size: 10.5px; }
  .link-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    display: grid; place-items: center;
    transition: all 180ms ease;
  }
  .link-card:hover .link-arrow {
    background: var(--orange);
    color: var(--black);
    transform: translateX(2px);
  }
  .link-arrow svg { width: 12px; height: 12px; }

  .link-card .tag {
    position: absolute;
    top: -7px; right: 14px;
    padding: 2px 8px;
    background: var(--orange);
    color: var(--black);
    font-family: var(--display-font);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
  }
  .link-card .tag.neutral {
    background: var(--steel);
    color: var(--silver);
  }

  /* ===== SOCIAL ROW ===== */
  .social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 12px;
  }
  .social a {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--graphite);
    display: grid; place-items: center;
    color: var(--silver);
    transition: all 180ms ease;
  }
  .social a:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }
  .social svg { width: 18px; height: 18px; }

  /* ===== FOOTER ===== */
  footer {
    text-align: center;
    font-size: 11px;
    color: var(--silver);
    opacity: 0.5;
    margin-top: 24px;
    font-family: var(--mono-font);
    letter-spacing: 0.1em;
  }
  footer .mark {
    font-family: var(--display-font);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--orange);
    opacity: 0.9;
  }

  @media (max-width: 480px) {
    .feature-title { font-size: 24px; }
    .feature-body { padding: 18px; }
    .feature-price .amount { font-size: 22px; }
  }
