html {
  color-scheme: dark;
}

:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, sans-serif;
  background: #070707;
  color: #f3f0ed;
}

* { box-sizing: border-box; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

body {
  margin: 0;
  min-height: 100vh;
  background: #070707;
}

.page-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px clamp(18px, 5vw, 42px) 34px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 23%, rgba(126, 0, 0, .74), transparent 28%),
    radial-gradient(circle at 50% 86%, rgba(93, 0, 0, .44), transparent 29%),
    linear-gradient(145deg, #030303 0%, #170000 47%, #050505 100%);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero { display: grid; justify-items: center; text-align: center; padding: 44px 0 40px; }
.brand-mark { width: 136px; height: 136px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #171717, #010101 68%); border: 1px solid rgba(255, 57, 57, .2); box-shadow: 0 0 0 10px rgba(255, 30, 30, .025), 0 0 55px rgba(255, 28, 28, .2); }
.brand-mark span { color: #ff1414; font-size: 68px; line-height: 1; font-weight: 800; transform: scaleX(.82); }
.hero p { margin: 0; color: #b5aaa4; font-size: 14px; }
.down-arrow { margin-top: 24px; color: #f6f1ed; font-size: 42px; line-height: .6; }

.link-list { display: grid; gap: 24px; width: 100%; margin: auto 0; }
.video-link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 28px 22px;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 12px 24px 12px 12px;
  border: 3px solid #928879;
  border-radius: 62px;
  background: linear-gradient(105deg, rgba(7, 7, 7, .98), rgba(20, 3, 3, .84));
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.video-link::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.05) 48%, transparent 72%); transform: translateX(-100%); transition: transform .55s ease; pointer-events: none; }
.video-link:hover::before, .video-link:focus-visible::before { transform: translateX(100%); }
.video-link:hover, .video-link:focus-visible { transform: translateY(-3px); border-color: #ff3939; background: linear-gradient(105deg, rgba(14, 4, 4, .98), rgba(36, 2, 2, .9)); box-shadow: 0 16px 32px rgba(0, 0, 0, .36), 0 0 22px rgba(255, 26, 26, .1); outline: none; }
.video-link img { width: 76px; height: 76px; border-radius: 18px; object-fit: contain; background: linear-gradient(145deg, #171717, #030303); border: 2px solid rgba(255,255,255,.16); box-shadow: 0 5px 14px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04); }
.video-link .tripasa-image { border-radius: 50%; object-fit: cover; }
.video-link .bot-image { border-radius: 50%; object-fit: cover; }
.video-link .service-icon { width: 28px; height: 28px; border: 0; border-radius: 50%; }
.open-arrow { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: #fff; font-size: 15px; line-height: 1; }
.link-copy { display: grid; gap: 7px; }
.link-copy strong { font-size: clamp(15px, 3vw, 23px); letter-spacing: .04em; line-height: 1.15; }
.link-copy small { color: #9f9791; font-size: 12px; }
.tap-label { color: #e8c8c0 !important; font-size: 10px !important; font-weight: 700; letter-spacing: .08em; }
.link-arrow { color: #f1ece8; font-size: 29px; transform: rotate(-45deg); }
footer { margin-top: 40px; text-align: center; color: #827a75; font-size: 10px; letter-spacing: .2em; }

@media (max-width: 520px) {
  .page-shell { padding: 8px 12px 16px; }
  .hero { padding: 15px 0 17px; }
  .brand-mark { width: 78px; height: 78px; }
  .brand-mark span { font-size: 40px; }
  .hero p { font-size: 11px; }
  .down-arrow { margin-top: 12px; font-size: 27px; }
  .link-list { gap: 12px; }
  .video-link { grid-template-columns: 52px minmax(0, 1fr) 22px 19px; gap: 9px; min-height: 70px; padding: 7px 11px 7px 7px; border-width: 2px; }
  .video-link img { width: 52px; height: 52px; border-radius: 14px; }
  .link-copy small { font-size: 10px; }
  .link-copy { gap: 4px; }
  .link-copy strong { font-size: 13px; }
  .video-link .service-icon { width: 22px; height: 22px; }
  .open-arrow { width: 19px; height: 19px; font-size: 12px; }
  footer { margin-top: 18px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .video-link,
  .video-link::before { transition: none; }
}
